Class: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomBigQueryDestination
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomBigQueryDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb
Overview
The BigQuery table where the server writes the output.
Instance Attribute Summary collapse
-
#force ⇒ Boolean
(also: #force?)
If the destination table already exists and this flag is
TRUE, the table is overwritten by the contents of the DICOM store. -
#table_uri ⇒ String
BigQuery URI to a table, up to 2000 characters long, in the format
bq:// projectId.bqDatasetId.tableIdCorresponds to the JSON propertytableUri.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudHealthcareV1DicomBigQueryDestination
constructor
A new instance of GoogleCloudHealthcareV1DicomBigQueryDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudHealthcareV1DicomBigQueryDestination
Returns a new instance of GoogleCloudHealthcareV1DicomBigQueryDestination.
1964 1965 1966 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1964 def initialize(**args) update!(**args) end |
Instance Attribute Details
#force ⇒ Boolean Also known as: force?
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
1955 1956 1957 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1955 def force @force end |
#table_uri ⇒ String
BigQuery URI to a table, up to 2000 characters long, in the format bq://
projectId.bqDatasetId.tableId
Corresponds to the JSON property tableUri
1962 1963 1964 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1962 def table_uri @table_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1969 1970 1971 1972 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1969 def update!(**args) @force = args[:force] if args.key?(:force) @table_uri = args[:table_uri] if args.key?(:table_uri) end |