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

OperationMetadata

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

Represents the metadata of the long-running operation.

interface OperationMetadata {
readonly apiVersion?: string;
readonly controlPlaneDisconnected?: boolean;
readonly createTime?: Date;
readonly endTime?: Date;
readonly progress?: OperationProgress;
readonly requestedCancellation?: boolean;
readonly statusMessage?: string;
readonly target?: string;
readonly type?:
| "OPERATION_TYPE_UNSPECIFIED"
| "CREATE"
| "DELETE"
| "UPDATE"
| "UPGRADE"
| "PLATFORM_UPGRADE";
readonly verb?: string;
}

§Properties

§
readonly apiVersion?: string
[src]

Output only. API version used to start the operation.

§
readonly controlPlaneDisconnected?: boolean
[src]

Output only. Denotes if the local managing cluster's control plane is currently disconnected. This is expected to occur temporarily during self-managed cluster upgrades.

§
readonly createTime?: Date
[src]

Output only. The time the operation was created.

§
readonly endTime?: Date
[src]

Output only. The time the operation finished running.

§
readonly progress?: OperationProgress
[src]

Output only. Detailed progress information for the operation.

§
readonly requestedCancellation?: boolean
[src]

Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have [Operation.error] value with a [google.rpc.Status.code] of 1, corresponding to Code.CANCELLED.

§
readonly statusMessage?: string
[src]

Output only. Human-readable status of the operation, if any.

§
readonly target?: string
[src]

Output only. Server-defined resource path for the target of the operation.

§
readonly type?: "OPERATION_TYPE_UNSPECIFIED" | "CREATE" | "DELETE" | "UPDATE" | "UPGRADE" | "PLATFORM_UPGRADE"
[src]

Output only. Type of operation being executed.

§
readonly verb?: string
[src]

Output only. Name of the verb executed by the operation.