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

WorkflowInvocationAction

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

Represents a single action in a workflow invocation.

interface WorkflowInvocationAction {
readonly bigqueryAction?: BigQueryAction;
readonly canonicalTarget?: Target;
readonly failureReason?: string;
readonly invocationTiming?: Interval;
readonly notebookAction?: NotebookAction;
readonly state?:
| "PENDING"
| "RUNNING"
| "SKIPPED"
| "DISABLED"
| "SUCCEEDED"
| "CANCELLED"
| "FAILED";
readonly target?: Target;
}

§Properties

§
readonly bigqueryAction?: BigQueryAction
[src]

Output only. The workflow action's bigquery action details.

§
readonly canonicalTarget?: Target
[src]

Output only. The action's identifier if the project had been compiled without any overrides configured. Unique within the compilation result.

§
readonly failureReason?: string
[src]

Output only. If and only if action's state is FAILED a failure reason is set.

§
readonly invocationTiming?: Interval
[src]

Output only. This action's timing details. start_time will be set if the action is in [RUNNING, SUCCEEDED, CANCELLED, FAILED] state. end_time will be set if the action is in [SUCCEEDED, CANCELLED, FAILED] state.

§
readonly notebookAction?: NotebookAction
[src]

Output only. The workflow action's notebook action details.

§
readonly state?: "PENDING" | "RUNNING" | "SKIPPED" | "DISABLED" | "SUCCEEDED" | "CANCELLED" | "FAILED"
[src]

Output only. This action's current state.

§
readonly target?: Target
[src]

Output only. This action's identifier. Unique within the workflow invocation.