InvocationConfig
import type { InvocationConfig } from "https://googleapis.deno.dev/v1/dataform:v1beta1.ts";
Includes various configuration options for a workflow invocation. If both
included_targets
and included_tags
are unset, all actions will be
included.
interface InvocationConfig {
fullyRefreshIncrementalTablesEnabled?: boolean;
includedTags?: string[];
includedTargets?: Target[];
queryPriority?: "QUERY_PRIORITY_UNSPECIFIED" | "INTERACTIVE" | "BATCH";
serviceAccount?: string;
transitiveDependenciesIncluded?: boolean;
transitiveDependentsIncluded?: boolean;
}§Properties
§
fullyRefreshIncrementalTablesEnabled?: boolean
[src]Optional. When set to true, any incremental tables will be fully refreshed.
§
queryPriority?: "QUERY_PRIORITY_UNSPECIFIED" | "INTERACTIVE" | "BATCH"
[src]Optional. Specifies the priority for query execution in BigQuery. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#queries.