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

SessionStateHistory

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

Historical state information.

interface SessionStateHistory {
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "ACTIVE"
| "TERMINATING"
| "TERMINATED"
| "FAILED";
readonly stateMessage?: string;
readonly stateStartTime?: Date;
}

§Properties

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "ACTIVE" | "TERMINATING" | "TERMINATED" | "FAILED"
[src]

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

§
readonly stateMessage?: string
[src]

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

§
readonly stateStartTime?: Date
[src]

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