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

StateHistory

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

Historical state information.

interface StateHistory {
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "RUNNING"
| "CANCELLING"
| "CANCELLED"
| "SUCCEEDED"
| "FAILED";
readonly stateMessage?: string;
readonly stateStartTime?: Date;
}

§Properties

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "RUNNING" | "CANCELLING" | "CANCELLED" | "SUCCEEDED" | "FAILED"
[src]

Output only. The state of the batch at this point in history.

§
readonly stateMessage?: string
[src]

Output only. Details about the state at this point in history.

§
readonly stateStartTime?: Date
[src]

Output only. The time when the batch entered the historical state.