{-# LANGUAGE DataKinds #-} {-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE ImportQualifiedPost #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE PatternSynonyms #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- | -- Module : Gogol.Healthcare.Projects.Locations.Datasets.FhirStores.Fhir.ExecuteBundle -- Copyright : (c) 2015-2025 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Toni Cebrián -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Executes all the requests in the given Bundle. Implements the FHIR standard batch\/transaction interaction (, , ). Supports all interactions within a bundle, except search. This method accepts Bundles of type @batch@ and @transaction@, processing them according to the batch processing rules (, , ) and transaction processing rules (, , ). The request body must contain a -- JSON-encoded FHIR @Bundle@ resource, and the request headers must contain @Content-Type: application\/fhir+json@. For a batch bundle or a successful transaction, the response body contains a JSON-encoded representation of a @Bundle@ resource of type @batch-response@ or @transaction-response@ containing one entry for each entry in the request, with the outcome of processing the entry. In the case of an error for a transaction bundle, the response body contains a JSON-encoded @OperationOutcome@ resource describing the reason for the error. If the request cannot be mapped to a valid API method on a FHIR store, a generic GCP error might be returned instead. This method checks permissions for each request in the bundle. The @executeBundle@ permission is required to call this method, but you must also grant sufficient permissions to execute the individual requests in the bundle. For example, if the bundle contains a request to create a FHIR resource, the caller must also have been granted the -- @healthcare.fhirResources.create@ permission. You can use audit logs to view the permissions for @executeBundle@ and each request in the bundle. For more information, see . For samples that show how to call @executeBundle@, see . -- -- /See:/ for @healthcare.projects.locations.datasets.fhirStores.fhir.executeBundle@. module Gogol.Healthcare.Projects.Locations.Datasets.FhirStores.Fhir.ExecuteBundle ( -- * Resource HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundleResource, -- ** Constructing a Request HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle (..), newHealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle, ) where import Gogol.Healthcare.Types import Gogol.Prelude qualified as Core -- | A resource alias for @healthcare.projects.locations.datasets.fhirStores.fhir.executeBundle@ method which the -- 'HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle' request conforms to. type HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundleResource = "v1" Core.:> Core.Capture "parent" Core.Text Core.:> "fhir" Core.:> Core.QueryParam "$.xgafv" Xgafv Core.:> Core.QueryParam "access_token" Core.Text Core.:> Core.QueryParam "callback" Core.Text Core.:> Core.QueryParam "uploadType" Core.Text Core.:> Core.QueryParam "upload_protocol" Core.Text Core.:> Core.QueryParam "alt" Core.AltJSON Core.:> Core.ReqBody '[Core.JSON] HttpBody Core.:> Core.Post '[Core.JSON] HttpBody -- | Executes all the requests in the given Bundle. Implements the FHIR standard batch\/transaction interaction (, , ). Supports all interactions within a bundle, except search. This method accepts Bundles of type @batch@ and @transaction@, processing them according to the batch processing rules (, , ) and transaction processing rules (, , ). The request body must contain a -- JSON-encoded FHIR @Bundle@ resource, and the request headers must contain @Content-Type: application\/fhir+json@. For a batch bundle or a successful transaction, the response body contains a JSON-encoded representation of a @Bundle@ resource of type @batch-response@ or @transaction-response@ containing one entry for each entry in the request, with the outcome of processing the entry. In the case of an error for a transaction bundle, the response body contains a JSON-encoded @OperationOutcome@ resource describing the reason for the error. If the request cannot be mapped to a valid API method on a FHIR store, a generic GCP error might be returned instead. This method checks permissions for each request in the bundle. The @executeBundle@ permission is required to call this method, but you must also grant sufficient permissions to execute the individual requests in the bundle. For example, if the bundle contains a request to create a FHIR resource, the caller must also have been granted the -- @healthcare.fhirResources.create@ permission. You can use audit logs to view the permissions for @executeBundle@ and each request in the bundle. For more information, see . For samples that show how to call @executeBundle@, see . -- -- /See:/ 'newHealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle' smart constructor. data HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle = HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle { -- | V1 error format. xgafv :: (Core.Maybe Xgafv), -- | OAuth access token. accessToken :: (Core.Maybe Core.Text), -- | JSONP callback :: (Core.Maybe Core.Text), -- | Required. Name of the FHIR store in which this bundle will be executed. parent :: Core.Text, -- | Multipart request metadata. payload :: HttpBody, -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). uploadType :: (Core.Maybe Core.Text), -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). uploadProtocol :: (Core.Maybe Core.Text) } deriving (Core.Eq, Core.Show, Core.Generic) -- | Creates a value of 'HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle' with the minimum fields required to make a request. newHealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle :: -- | Required. Name of the FHIR store in which this bundle will be executed. See 'parent'. Core.Text -> -- | Multipart request metadata. See 'payload'. HttpBody -> HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle newHealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle parent payload = HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle { xgafv = Core.Nothing, accessToken = Core.Nothing, callback = Core.Nothing, parent = parent, payload = payload, uploadType = Core.Nothing, uploadProtocol = Core.Nothing } instance Core.GoogleRequest HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle where type Rs HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle = HttpBody type Scopes HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle = '[CloudHealthcare'FullControl, CloudPlatform'FullControl] requestClient HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundle {..} = go parent xgafv accessToken callback uploadType uploadProtocol (Core.Just Core.AltJSON) payload healthcareService where go = Core.buildClient ( Core.Proxy :: Core.Proxy HealthcareProjectsLocationsDatasetsFhirStoresFhirExecuteBundleResource ) Core.mempty