Class: Google::Apis::HealthcareV1alpha2::ExportResourcesRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::ExportResourcesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb
Overview
Request to export resources.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2FhirBigQueryDestination
The configuration for exporting to BigQuery.
-
#gcs_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2FhirRestGcsDestination
The configuration for exporting to Cloud Storage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportResourcesRequest
constructor
A new instance of ExportResourcesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExportResourcesRequest
Returns a new instance of ExportResourcesRequest
776 777 778 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 776 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2FhirBigQueryDestination
The configuration for exporting to BigQuery.
Corresponds to the JSON property bigqueryDestination
769 770 771 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 769 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2FhirRestGcsDestination
The configuration for exporting to Cloud Storage.
Corresponds to the JSON property gcsDestination
774 775 776 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 774 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
781 782 783 784 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 781 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |