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

WorkflowNode

import type { WorkflowNode } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";

The workflow node.

interface WorkflowNode {
readonly error?: string;
readonly jobId?: string;
readonly prerequisiteStepIds?: string[];
readonly state?:
| "NODE_STATE_UNSPECIFIED"
| "BLOCKED"
| "RUNNABLE"
| "RUNNING"
| "COMPLETED"
| "FAILED";
readonly stepId?: string;
}

§Properties

§
readonly error?: string
[src]

Output only. The error detail.

§
readonly jobId?: string
[src]

Output only. The job id; populated after the node enters RUNNING state.

§
readonly prerequisiteStepIds?: string[]
[src]

Output only. Node's prerequisite nodes.

§
readonly state?: "NODE_STATE_UNSPECIFIED" | "BLOCKED" | "RUNNABLE" | "RUNNING" | "COMPLETED" | "FAILED"
[src]

Output only. The node state.

§
readonly stepId?: string
[src]

Output only. The name of the node.