Class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomBigQueryDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb

Overview

The BigQuery table where the output should be written.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudHealthcareV1beta1DicomBigQueryDestination

Returns a new instance of GoogleCloudHealthcareV1beta1DicomBigQueryDestination



854
855
856
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 854

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#forceBoolean Also known as: force?

If the destination table already exists and this flag is TRUE, the table will be 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

Returns:

  • (Boolean)


845
846
847
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 845

def force
  @force
end

#table_uriString

BigQuery URI to a table, up to 2000 characters long, in the format bq://projectId.bqDatasetId.tableId Corresponds to the JSON property tableUri

Returns:

  • (String)


852
853
854
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 852

def table_uri
  @table_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



859
860
861
862
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 859

def update!(**args)
  @force = args[:force] if args.key?(:force)
  @table_uri = args[:table_uri] if args.key?(:table_uri)
end