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

JobStatus

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

Dataproc job status.

interface JobStatus {
readonly details?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "SETUP_DONE"
| "RUNNING"
| "CANCEL_PENDING"
| "CANCEL_STARTED"
| "CANCELLED"
| "DONE"
| "ERROR"
| "ATTEMPT_FAILURE";
readonly stateStartTime?: Date;
readonly substate?:
| "UNSPECIFIED"
| "SUBMITTED"
| "QUEUED"
| "STALE_STATUS";
}

§Properties

§
readonly details?: string
[src]

Optional. Output only. Job state details, such as an error description if the state is ERROR.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "SETUP_DONE" | "RUNNING" | "CANCEL_PENDING" | "CANCEL_STARTED" | "CANCELLED" | "DONE" | "ERROR" | "ATTEMPT_FAILURE"
[src]

Output only. A state message specifying the overall job state.

§
readonly stateStartTime?: Date
[src]

Output only. The time when this state was entered.

§
readonly substate?: "UNSPECIFIED" | "SUBMITTED" | "QUEUED" | "STALE_STATUS"
[src]

Output only. Additional state information, which includes status reported by the agent.