Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaFhirStoreSource
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaFhirStoreSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Cloud FhirStore source import data from.
Instance Attribute Summary collapse
-
#fhir_store ⇒ String
Required.
-
#gcs_staging_dir ⇒ String
Intermediate Cloud Storage directory used for the import with a length limit of 2,000 characters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaFhirStoreSource
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaFhirStoreSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaFhirStoreSource
Returns a new instance of GoogleCloudDiscoveryengineV1alphaFhirStoreSource.
7162 7163 7164 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fhir_store ⇒ String
Required. The full resource name of the FHIR store to import data from, in the
format of projects/
project/locations/
location/datasets/
dataset/
fhirStores/
fhir_store`.
Corresponds to the JSON property
fhirStore`
7153 7154 7155 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7153 def fhir_store @fhir_store end |
#gcs_staging_dir ⇒ String
Intermediate Cloud Storage directory used for the import with a length limit
of 2,000 characters. Can be specified if one wants to have the FhirStore
export to a specific Cloud Storage directory.
Corresponds to the JSON property gcsStagingDir
7160 7161 7162 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7160 def gcs_staging_dir @gcs_staging_dir end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7167 7168 7169 7170 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7167 def update!(**args) @fhir_store = args[:fhir_store] if args.key?(:fhir_store) @gcs_staging_dir = args[:gcs_staging_dir] if args.key?(:gcs_staging_dir) end |