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

ClusterStatus

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

The status of a cluster and its instances.

interface ClusterStatus {
readonly detail?: string;
readonly state?:
| "UNKNOWN"
| "CREATING"
| "RUNNING"
| "ERROR"
| "ERROR_DUE_TO_UPDATE"
| "DELETING"
| "UPDATING"
| "STOPPING"
| "STOPPED"
| "STARTING"
| "REPAIRING";
readonly stateStartTime?: Date;
readonly substate?: "UNSPECIFIED" | "UNHEALTHY" | "STALE_STATUS";
}

§Properties

§
readonly detail?: string
[src]

Optional. Output only. Details of cluster's state.

§
readonly state?: "UNKNOWN" | "CREATING" | "RUNNING" | "ERROR" | "ERROR_DUE_TO_UPDATE" | "DELETING" | "UPDATING" | "STOPPING" | "STOPPED" | "STARTING" | "REPAIRING"
[src]

Output only. The cluster's state.

§
readonly stateStartTime?: Date
[src]

Output only. Time when this state was entered (see JSON representation of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json)).

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

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