InvocationConfig

Includes various configuration options for a workflow invocation. If both includedTargets and includedTags are unset, all actions will be included.

JSON representation
{
  "includedTargets": [
    {
      object (Target)
    }
  ],
  "includedTags": [
    string
  ],
  "transitiveDependenciesIncluded": boolean,
  "transitiveDependentsIncluded": boolean,
  "fullyRefreshIncrementalTablesEnabled": boolean,
  "serviceAccount": string,
  "queryPriority": enum (QueryPriority)
}
Fields
includedTargets[]

object (Target)

Optional. The set of action identifiers to include.

includedTags[]

string

Optional. The set of tags to include.

transitiveDependenciesIncluded

boolean

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

transitiveDependentsIncluded

boolean

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

fullyRefreshIncrementalTablesEnabled

boolean

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

serviceAccount

string

Optional. The service account to run workflow invocations under.

queryPriority

enum (QueryPriority)

Optional. Specifies the priority for query execution in BigQuery. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#queries.

QueryPriority

Types of priority for query execution in BigQuery.

Enums
QUERY_PRIORITY_UNSPECIFIED Default value. This value is unused.
INTERACTIVE Query will be executed in BigQuery with interactive priority. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#queries.
BATCH Query will be executed in BigQuery with batch priority. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#batchqueries.