Class: Google::Apis::HealthcareV1alpha2::ExportDicomDataRequest
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::ExportDicomDataRequest
- 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
Exports data from the specified DICOM store. If a given resource (e.g., a DICOM object with the same SOPInstance UID) already exists in the output, it is overwritten with the version in the source dataset. Exported DICOM data will persist when the DICOM store from which it was exported is deleted.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2DicomBigQueryDestination
The BigQuery table where the output should be written.
-
#gcs_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2DicomGcsDestination
The Cloud Storage location where the output should be written, and the export configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportDicomDataRequest
constructor
A new instance of ExportDicomDataRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExportDicomDataRequest
Returns a new instance of ExportDicomDataRequest
752 753 754 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 752 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2DicomBigQueryDestination
The BigQuery table where the output should be written.
Corresponds to the JSON property bigqueryDestination
744 745 746 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 744 def bigquery_destination @bigquery_destination end |
#gcs_destination ⇒ Google::Apis::HealthcareV1alpha2::GoogleCloudHealthcareV1alpha2DicomGcsDestination
The Cloud Storage location where the output should be written, and the export
configuration.
Corresponds to the JSON property gcsDestination
750 751 752 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 750 def gcs_destination @gcs_destination end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
757 758 759 760 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 757 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination) end |