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

ExternalDataSources

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

External data sources for an execution.

interface ExternalDataSources {
assetType?: string;
name?: string;
type?: "TYPE_UNSPECIFIED" | "BIG_QUERY_TABLE";
uri?: string;
}

§Properties

§
assetType?: string
[src]

Required. The asset type of the external data source. This can be a supported Cloud Asset Inventory asset type (see https://cloud.google.com/asset-inventory/docs/supported-asset-types) to override the default asset type, or it can be a custom type defined by the user.

§
name?: string
[src]

Optional. Name of external data source. The name will be used inside the rego/sql to refer the external data.

§
type?: "TYPE_UNSPECIFIED" | "BIG_QUERY_TABLE"
[src]

Required. Type of external data source.

§
uri?: string
[src]

Required. URI of external data source. example of bq table {project_ID}.{dataset_ID}.{table_ID}.