Class: Google::Apis::HealthcareV1beta1::ExportAnnotationsRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::ExportAnnotationsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
Request to export Annotations. The export operation is not atomic. If a failure occurs, any annotations already exported are not removed.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination
The BigQuery table for export.
-
#gcs_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationGcsDestination
The Cloud Storage location for export.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportAnnotationsRequest
constructor
A new instance of ExportAnnotationsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExportAnnotationsRequest
Returns a new instance of ExportAnnotationsRequest.
2675 2676 2677 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2675 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination
The BigQuery table for export.
Corresponds to the JSON property bigqueryDestination
2668 2669 2670 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2668 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationGcsDestination
The Cloud Storage location for export.
Corresponds to the JSON property gcsDestination
2673 2674 2675 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2673 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2680 2681 2682 2683 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 2680 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |