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

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[];
serviceAccount?: string;
transitiveDependenciesIncluded?: boolean;
transitiveDependentsIncluded?: boolean;
}

§Properties

§
fullyRefreshIncrementalTablesEnabled?: boolean
[src]

Optional. When set to true, any incremental tables will be fully refreshed.

§
includedTags?: string[]
[src]

Optional. The set of tags to include.

§
includedTargets?: Target[]
[src]

Optional. The set of action identifiers to include.

§
serviceAccount?: string
[src]

Optional. The service account to run workflow invocations under.

§
transitiveDependenciesIncluded?: boolean
[src]

Optional. When set to true, transitive dependencies of included actions will be executed.

§
transitiveDependentsIncluded?: boolean
[src]

Optional. When set to true, transitive dependents of included actions will be executed.