class Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomBigQueryDestination
The BigQuery table where the server writes the output.
Attributes
If the destination table already exists and this flag is `TRUE`, the table is overwritten by the contents of the DICOM store. If the flag is not set and the destination table already exists, the export call returns an error. Corresponds to the JSON property `force` @return [Boolean]
If the destination table already exists and this flag is `TRUE`, the table is overwritten by the contents of the DICOM store. If the flag is not set and the destination table already exists, the export call returns an error. Corresponds to the JSON property `force` @return [Boolean]
BigQuery URI to a table, up to 2000 characters long, in the format `bq:// projectId.bqDatasetId.tableId` Corresponds to the JSON property `tableUri` @return [String]
Public Class Methods
# File lib/google/apis/healthcare_v1/classes.rb, line 1842 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/healthcare_v1/classes.rb, line 1847 def update!(**args) @force = args[:force] if args.key?(:force) @table_uri = args[:table_uri] if args.key?(:table_uri) end