Class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination
- 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 for export.
Instance Attribute Summary collapse
-
#force ⇒ Boolean
(also: #force?)
Use
write_disposition
instead. -
#schema_type ⇒ String
Specifies the schema format to export.
-
#table_uri ⇒ String
BigQuery URI to a table, up to 2000 characters long, must be of the form bq:// projectId.bqDatasetId.tableId.
-
#write_disposition ⇒ String
Determines whether existing tables in the destination dataset are overwritten or appended to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination
constructor
A new instance of GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination
Returns a new instance of GoogleCloudHealthcareV1beta1AnnotationBigQueryDestination.
2250 2251 2252 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#force ⇒ Boolean Also known as: force?
Use write_disposition
instead. If write_disposition
is specified, this
parameter is ignored. force=false is equivalent to write_disposition=
WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.
Corresponds to the JSON property force
2229 2230 2231 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2229 def force @force end |
#schema_type ⇒ String
Specifies the schema format to export.
Corresponds to the JSON property schemaType
2235 2236 2237 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2235 def schema_type @schema_type end |
#table_uri ⇒ String
BigQuery URI to a table, up to 2000 characters long, must be of the form bq://
projectId.bqDatasetId.tableId.
Corresponds to the JSON property tableUri
2241 2242 2243 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2241 def table_uri @table_uri end |
#write_disposition ⇒ String
Determines whether existing tables in the destination dataset are overwritten
or appended to. If a write_disposition is specified, the force
parameter is
ignored.
Corresponds to the JSON property writeDisposition
2248 2249 2250 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2248 def write_disposition @write_disposition end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2255 2256 2257 2258 2259 2260 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 2255 def update!(**args) @force = args[:force] if args.key?(:force) @schema_type = args[:schema_type] if args.key?(:schema_type) @table_uri = args[:table_uri] if args.key?(:table_uri) @write_disposition = args[:write_disposition] if args.key?(:write_disposition) end |