public static interface QueryAssetsOutputConfig.BigQueryDestinationOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getDataset()
Required.
|
ByteString |
getDatasetBytes()
Required.
|
String |
getTable()
Required.
|
ByteString |
getTableBytes()
Required.
|
String |
getWriteDisposition()
Specifies the action that occurs if the destination table or partition
already exists.
|
ByteString |
getWriteDispositionBytes()
Specifies the action that occurs if the destination table or partition
already exists.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
String getDataset()
Required. The BigQuery dataset where the query results will be saved. It has the format of "projects/{projectId}/datasets/{datasetId}".
string dataset = 1 [(.google.api.field_behavior) = REQUIRED];
ByteString getDatasetBytes()
Required. The BigQuery dataset where the query results will be saved. It has the format of "projects/{projectId}/datasets/{datasetId}".
string dataset = 1 [(.google.api.field_behavior) = REQUIRED];
String getTable()
Required. The BigQuery table where the query results will be saved. If this table does not exist, a new table with the given name will be created.
string table = 2 [(.google.api.field_behavior) = REQUIRED];
ByteString getTableBytes()
Required. The BigQuery table where the query results will be saved. If this table does not exist, a new table with the given name will be created.
string table = 2 [(.google.api.field_behavior) = REQUIRED];
String getWriteDisposition()
Specifies the action that occurs if the destination table or partition already exists. The following values are supported: * WRITE_TRUNCATE: If the table or partition already exists, BigQuery overwrites the entire table or all the partitions data. * WRITE_APPEND: If the table or partition already exists, BigQuery appends the data to the table or the latest partition. * WRITE_EMPTY: If the table already exists and contains data, an error is returned.
string write_disposition = 3;
ByteString getWriteDispositionBytes()
Specifies the action that occurs if the destination table or partition already exists. The following values are supported: * WRITE_TRUNCATE: If the table or partition already exists, BigQuery overwrites the entire table or all the partitions data. * WRITE_APPEND: If the table or partition already exists, BigQuery appends the data to the table or the latest partition. * WRITE_EMPTY: If the table already exists and contains data, an error is returned.
string write_disposition = 3;
Copyright © 2022 Google LLC. All rights reserved.