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

UnitCondition

import type { UnitCondition } from "https://googleapis.deno.dev/v1/saasservicemgmt:v1beta1.ts";

UnitCondition describes the status of an Unit. UnitCondition is individual components that contribute to an overall state.

interface UnitCondition {
lastTransitionTime?: Date;
message?: string;
reason?: string;
status?:
| "STATUS_UNSPECIFIED"
| "STATUS_UNKNOWN"
| "STATUS_TRUE"
| "STATUS_FALSE";
type?:
| "TYPE_UNSPECIFIED"
| "TYPE_READY"
| "TYPE_UPDATING"
| "TYPE_PROVISIONED"
| "TYPE_OPERATION_ERROR";
}

§Properties

§
lastTransitionTime?: Date
[src]

Required. Last time the condition transited from one status to another.

§
message?: string
[src]

Required. Human readable message indicating details about the last transition.

§
reason?: string
[src]

Required. Brief reason for the condition's last transition.

§
status?: "STATUS_UNSPECIFIED" | "STATUS_UNKNOWN" | "STATUS_TRUE" | "STATUS_FALSE"
[src]

Required. Status of the condition.

§
type?: "TYPE_UNSPECIFIED" | "TYPE_READY" | "TYPE_UPDATING" | "TYPE_PROVISIONED" | "TYPE_OPERATION_ERROR"
[src]

Required. Type of the condition.