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

OperationStage

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

Information about a particular stage of an operation.

interface OperationStage {
endTime?: Date;
metrics?: Metric[];
stage?:
| "STAGE_UNSPECIFIED"
| "PREFLIGHT_CHECK"
| "CONFIGURE"
| "DEPLOY"
| "HEALTH_CHECK"
| "UPDATE";
startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "RUNNING"
| "SUCCEEDED"
| "FAILED";
}

§Properties

§
endTime?: Date
[src]

Time the stage ended.

§
metrics?: Metric[]
[src]

Progress metric bundle.

§
stage?: "STAGE_UNSPECIFIED" | "PREFLIGHT_CHECK" | "CONFIGURE" | "DEPLOY" | "HEALTH_CHECK" | "UPDATE"
[src]

The high-level stage of the operation.

§
startTime?: Date
[src]

Time the stage started.

§
readonly state?: "STATE_UNSPECIFIED" | "PENDING" | "RUNNING" | "SUCCEEDED" | "FAILED"
[src]

Output only. State of the stage.