Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination

import type { GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination } from "https://googleapis.deno.dev/v1/cloudasset:v1.ts";

BigQuery destination.

interface GoogleCloudAssetV1QueryAssetsOutputConfigBigQueryDestination {
dataset?: string;
table?: string;
writeDisposition?: string;
}

§Properties

§
dataset?: string
[src]

Required. The BigQuery dataset where the query results will be saved. It has the format of "projects/{projectId}/datasets/{datasetId}".

§
table?: string
[src]

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.

§
writeDisposition?: string
[src]

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.