Class: Google::Apis::HealthcareV1beta1::GcsDestination
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::GcsDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb
Overview
The Cloud Storage output destination. The Cloud Healthcare Service Agent
requires the roles/storage.objectAdmin
Cloud IAM roles on the Cloud Storage
location.
Instance Attribute Summary collapse
-
#content_structure ⇒ String
The format of the exported HL7v2 message files.
-
#message_view ⇒ String
Specifies the parts of the Message resource to include in the export.
-
#uri_prefix ⇒ String
URI of an existing Cloud Storage directory where the server writes result files, in the format
gs://
bucket-id/
path/to/destination/dir``.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GcsDestination
constructor
A new instance of GcsDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GcsDestination
Returns a new instance of GcsDestination.
2179 2180 2181 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2179 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_structure ⇒ String
The format of the exported HL7v2 message files.
Corresponds to the JSON property contentStructure
2164 2165 2166 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2164 def content_structure @content_structure end |
#message_view ⇒ String
Specifies the parts of the Message resource to include in the export. If not
specified, FULL is used.
Corresponds to the JSON property messageView
2170 2171 2172 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2170 def @message_view end |
#uri_prefix ⇒ String
URI of an existing Cloud Storage directory where the server writes result
files, in the format gs://
bucket-id/
path/to/destination/dir`. If there is
no trailing slash, the service appends one when composing the object path.
Corresponds to the JSON property
uriPrefix`
2177 2178 2179 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2177 def uri_prefix @uri_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2184 2185 2186 2187 2188 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2184 def update!(**args) @content_structure = args[:content_structure] if args.key?(:content_structure) @message_view = args[:message_view] if args.key?(:message_view) @uri_prefix = args[:uri_prefix] if args.key?(:uri_prefix) end |