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

CodeCompilationConfig

import type { CodeCompilationConfig } from "https://googleapis.deno.dev/v1/dataform:v1beta1.ts";

Configures various aspects of Dataform code compilation.

interface CodeCompilationConfig {
assertionSchema?: string;
databaseSuffix?: string;
defaultDatabase?: string;
defaultLocation?: string;
defaultNotebookRuntimeOptions?: NotebookRuntimeOptions;
defaultSchema?: string;
schemaSuffix?: string;
tablePrefix?: string;
vars?: {
[key: string]: string;
}
;
}

§Properties

§
assertionSchema?: string
[src]

Optional. The default schema (BigQuery dataset ID) for assertions.

§
databaseSuffix?: string
[src]

Optional. The suffix that should be appended to all database (Google Cloud project ID) names.

§
defaultDatabase?: string
[src]

Optional. The default database (Google Cloud project ID).

§
defaultLocation?: string
[src]

Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.

§
defaultNotebookRuntimeOptions?: NotebookRuntimeOptions
[src]
§
defaultSchema?: string
[src]

Optional. The default schema (BigQuery dataset ID).

§
schemaSuffix?: string
[src]

Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.

§
tablePrefix?: string
[src]

Optional. The prefix that should be prepended to all table names.

§
vars?: {
[key: string]: string;
}
[src]

Optional. User-defined variables that are made available to project code during compilation.