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

UnitOperationCondition

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

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

interface UnitOperationCondition {
lastTransitionTime?: Date;
message?: string;
reason?: string;
status?:
| "STATUS_UNSPECIFIED"
| "STATUS_UNKNOWN"
| "STATUS_TRUE"
| "STATUS_FALSE";
type?:
| "TYPE_UNSPECIFIED"
| "TYPE_SCHEDULED"
| "TYPE_RUNNING"
| "TYPE_SUCCEEDED"
| "TYPE_CANCELLED";
}

§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_SCHEDULED" | "TYPE_RUNNING" | "TYPE_SUCCEEDED" | "TYPE_CANCELLED"
[src]

Required. Type of the condition.