class Google::Apis::HealthcareV1::ExportDicomDataRequest

Exports data from the specified DICOM store. If a given resource, such as 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 persists when the DICOM store from which it was exported is deleted.

Attributes

bigquery_destination[RW]

The BigQuery table where the server writes the output. Corresponds to the JSON property `bigqueryDestination` @return [Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomBigQueryDestination]

gcs_destination[RW]

The Cloud Storage location where the server writes the output and the export configuration. Corresponds to the JSON property `gcsDestination` @return [Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomGcsDestination]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 1353
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/healthcare_v1/classes.rb, line 1358
def update!(**args)
  @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
  @gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
end