pub struct GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination {
pub dataset: Option<String>,
pub table: Option<String>,
pub write_disposition: Option<String>,
}Expand description
BigQuery destination.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dataset: Option<String>Required. The BigQuery dataset where the query results will be saved. It has the format of “projects/{projectId}/datasets/{datasetId}”.
table: Option<String>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.
write_disposition: Option<String>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, a ‘duplicate’ error is returned in the job result. The default value is WRITE_EMPTY.
Trait Implementations§
Source§impl Clone for GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination
impl Clone for GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination
Source§fn clone(&self) -> GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination
fn clone(&self) -> GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more