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

ResourceStatus

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

ResourceStatus describes why a cluster or node pool has a certain status. (e.g., ERROR or DEGRADED).

interface ResourceStatus {
conditions?: ResourceCondition[];
errorMessage?: string;
}

§Properties

§
conditions?: ResourceCondition[]
[src]

ResourceCondition provide a standard mechanism for higher-level status reporting from controller.

§
errorMessage?: string
[src]

Human-friendly representation of the error message from controller. The error message can be temporary as the controller controller creates a cluster or node pool. If the error message persists for a longer period of time, it can be used to surface error message to indicate real problems requiring user intervention.