Class: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirGcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::GoogleCloudHealthcareV1FhirGcsDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Overview
The configuration for exporting to Cloud Storage.
Instance Attribute Summary collapse
-
#uri_prefix ⇒ String
URI for a Cloud Storage directory where result files should be written, in the format of
gs://
bucket-id/
path/to/destination/dir``.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudHealthcareV1FhirGcsDestination
constructor
A new instance of GoogleCloudHealthcareV1FhirGcsDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudHealthcareV1FhirGcsDestination
Returns a new instance of GoogleCloudHealthcareV1FhirGcsDestination.
2485 2486 2487 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2485 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri_prefix ⇒ String
URI for a Cloud Storage directory where result files should be written, in the
format of gs://
bucket-id/
path/to/destination/dir`. If there is no
trailing slash, the service appends one when composing the object path. The
user is responsible for creating the Cloud Storage bucket referenced in
uri_prefix.
Corresponds to the JSON property
uriPrefix`
2483 2484 2485 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2483 def uri_prefix @uri_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2490 2491 2492 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2490 def update!(**args) @uri_prefix = args[:uri_prefix] if args.key?(:uri_prefix) end |