Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FhirStoreSource
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FhirStoreSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/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.
-
#resource_types ⇒ Array<String>
The FHIR resource types to import.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1FhirStoreSource
constructor
A new instance of GoogleCloudDiscoveryengineV1FhirStoreSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1FhirStoreSource
Returns a new instance of GoogleCloudDiscoveryengineV1FhirStoreSource.
5040 5041 5042 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5040 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`
5023 5024 5025 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5023 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
5030 5031 5032 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5030 def gcs_staging_dir @gcs_staging_dir end |
#resource_types ⇒ Array<String>
The FHIR resource types to import. The resource types should be a subset of
all supported FHIR resource types. Default to
all supported FHIR resource types if empty.
Corresponds to the JSON property resourceTypes
5038 5039 5040 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5038 def resource_types @resource_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5045 5046 5047 5048 5049 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5045 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) @resource_types = args[:resource_types] if args.key?(:resource_types) end |