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

ExecutionStageState

import type { ExecutionStageState } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A message describing the state of a particular execution stage.

interface ExecutionStageState {
currentStateTime?: Date;
executionStageName?: string;
executionStageState?:
| "JOB_STATE_UNKNOWN"
| "JOB_STATE_STOPPED"
| "JOB_STATE_RUNNING"
| "JOB_STATE_DONE"
| "JOB_STATE_FAILED"
| "JOB_STATE_CANCELLED"
| "JOB_STATE_UPDATED"
| "JOB_STATE_DRAINING"
| "JOB_STATE_DRAINED"
| "JOB_STATE_PENDING"
| "JOB_STATE_CANCELLING"
| "JOB_STATE_QUEUED"
| "JOB_STATE_RESOURCE_CLEANING_UP";
}

§Properties

§
currentStateTime?: Date
[src]

The time at which the stage transitioned to this state.

§
executionStageName?: string
[src]

The name of the execution stage.

§
executionStageState?: "JOB_STATE_UNKNOWN" | "JOB_STATE_STOPPED" | "JOB_STATE_RUNNING" | "JOB_STATE_DONE" | "JOB_STATE_FAILED" | "JOB_STATE_CANCELLED" | "JOB_STATE_UPDATED" | "JOB_STATE_DRAINING" | "JOB_STATE_DRAINED" | "JOB_STATE_PENDING" | "JOB_STATE_CANCELLING" | "JOB_STATE_QUEUED" | "JOB_STATE_RESOURCE_CLEANING_UP"
[src]

Executions stage states allow the same set of values as JobState.