{-# 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.History -- 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) -- -- Lists all the versions of a resource (including the current version and deleted versions) from the FHIR store. Implements the per-resource form of the FHIR standard history interaction (, , ). On success, the response body contains a JSON-encoded representation of a @Bundle@ resource of type @history@, containing the version history sorted from most recent to oldest versions. Errors generated by the FHIR store contain 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. For samples that show how to call @history@, see . -- -- /See:/ for @healthcare.projects.locations.datasets.fhirStores.fhir.history@. module Gogol.Healthcare.Projects.Locations.Datasets.FhirStores.Fhir.History ( -- * Resource HealthcareProjectsLocationsDatasetsFhirStoresFhirHistoryResource, -- ** Constructing a Request HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory (..), newHealthcareProjectsLocationsDatasetsFhirStoresFhirHistory, ) where import Gogol.Healthcare.Types import Gogol.Prelude qualified as Core -- | A resource alias for @healthcare.projects.locations.datasets.fhirStores.fhir.history@ method which the -- 'HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory' request conforms to. type HealthcareProjectsLocationsDatasetsFhirStoresFhirHistoryResource = "v1" Core.:> Core.Capture "name" Core.Text Core.:> "_history" Core.:> Core.QueryParam "$.xgafv" Xgafv Core.:> Core.QueryParam "_at" Core.Text Core.:> Core.QueryParam "_count" Core.Int32 Core.:> Core.QueryParam "_page_token" Core.Text Core.:> Core.QueryParam "_since" Core.Text 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.Get '[Core.JSON] HttpBody -- | Lists all the versions of a resource (including the current version and deleted versions) from the FHIR store. Implements the per-resource form of the FHIR standard history interaction (, , ). On success, the response body contains a JSON-encoded representation of a @Bundle@ resource of type @history@, containing the version history sorted from most recent to oldest versions. Errors generated by the FHIR store contain 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. For samples that show how to call @history@, see . -- -- /See:/ 'newHealthcareProjectsLocationsDatasetsFhirStoresFhirHistory' smart constructor. data HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory = HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory { -- | V1 error format. xgafv :: (Core.Maybe Xgafv), -- | Only include resource versions that were current at some point during the time period specified in the date time value. The date parameter format is yyyy-mm-ddThh:mm:ss[Z|(+|-)hh:mm] Clients may specify any of the following: * An entire year: @_at=2019@ * An entire month: @_at=2019-01@ * A specific day: @_at=2019-01-20@ * A specific second: @_at=2018-12-31T23:59:58Z@ at :: (Core.Maybe Core.Text), -- | The maximum number of search results on a page. If not specified, 100 is used. May not be larger than 1000. count :: (Core.Maybe Core.Int32), -- | Used to retrieve the first, previous, next, or last page of resource versions when using pagination. Value should be set to the value of @_page_token@ set in next or previous page links\' URLs. Next and previous page are returned in the response bundle\'s links field, where @link.relation@ is \"previous\" or \"next\". Omit @_page_token@ if no previous request has been made. pageToken :: (Core.Maybe Core.Text), -- | Only include resource versions that were created at or after the given instant in time. The instant in time uses the format YYYY-MM-DDThh:mm:ss.sss+zz:zz (for example 2015-02-07T13:28:17.239+02:00 or 2017-01-01T00:00:00Z). The time must be specified to the second and include a time zone. since :: (Core.Maybe Core.Text), -- | OAuth access token. accessToken :: (Core.Maybe Core.Text), -- | JSONP callback :: (Core.Maybe Core.Text), -- | Required. The name of the resource to retrieve. name :: Core.Text, -- | 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 'HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory' with the minimum fields required to make a request. newHealthcareProjectsLocationsDatasetsFhirStoresFhirHistory :: -- | Required. The name of the resource to retrieve. See 'name'. Core.Text -> HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory newHealthcareProjectsLocationsDatasetsFhirStoresFhirHistory name = HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory { xgafv = Core.Nothing, at = Core.Nothing, count = Core.Nothing, pageToken = Core.Nothing, since = Core.Nothing, accessToken = Core.Nothing, callback = Core.Nothing, name = name, uploadType = Core.Nothing, uploadProtocol = Core.Nothing } instance Core.GoogleRequest HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory where type Rs HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory = HttpBody type Scopes HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory = '[CloudHealthcare'FullControl, CloudPlatform'FullControl] requestClient HealthcareProjectsLocationsDatasetsFhirStoresFhirHistory {..} = go name xgafv at count pageToken since accessToken callback uploadType uploadProtocol (Core.Just Core.AltJSON) healthcareService where go = Core.buildClient ( Core.Proxy :: Core.Proxy HealthcareProjectsLocationsDatasetsFhirStoresFhirHistoryResource ) Core.mempty