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";

Message for external data sources

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 one of go/cai-asset-types to override the default asset type or it can be a custom type defined by the user custom type must match the asset type in the rule

§
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}