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

ClusterOperationStatus

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

The status of the operation.

interface ClusterOperationStatus {
readonly details?: string;
readonly innerState?: string;
readonly state?:
| "UNKNOWN"
| "PENDING"
| "RUNNING"
| "DONE";
readonly stateStartTime?: Date;
}

§Properties

§
readonly details?: string
[src]

Output only. A message containing any operation metadata details.

§
readonly innerState?: string
[src]

Output only. A message containing the detailed operation state.

§
readonly state?: "UNKNOWN" | "PENDING" | "RUNNING" | "DONE"
[src]

Output only. A message containing the operation state.

§
readonly stateStartTime?: Date
[src]

Output only. The time this state was entered.