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

GooglePrivacyDlpV2BigQueryTable

import type { GooglePrivacyDlpV2BigQueryTable } from "https://googleapis.deno.dev/v1/dlp:v2.ts";

Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: :. or ...

interface GooglePrivacyDlpV2BigQueryTable {
datasetId?: string;
projectId?: string;
tableId?: string;
}

§Properties

§
datasetId?: string
[src]

Dataset ID of the table.

§
projectId?: string
[src]

The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.

§
tableId?: string
[src]

Name of the table.