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

NodeGroupOperationMetadata

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

Metadata describing the node group operation.

interface NodeGroupOperationMetadata {
readonly clusterUuid?: string;
readonly description?: string;
readonly labels?: {
[key: string]: string;
}
;
readonly nodeGroupId?: string;
operationType?:
| "NODE_GROUP_OPERATION_TYPE_UNSPECIFIED"
| "CREATE"
| "UPDATE"
| "DELETE"
| "RESIZE"
| "REPAIR"
| "UPDATE_LABELS";
readonly status?: ClusterOperationStatus;
readonly statusHistory?: ClusterOperationStatus[];
readonly warnings?: string[];
}

§Properties

§
readonly clusterUuid?: string
[src]

Output only. Cluster UUID associated with the node group operation.

§
readonly description?: string
[src]

Output only. Short description of operation.

§
readonly labels?: {
[key: string]: string;
}
[src]

Output only. Labels associated with the operation.

§
readonly nodeGroupId?: string
[src]

Output only. Node group ID for the operation.

§
operationType?: "NODE_GROUP_OPERATION_TYPE_UNSPECIFIED" | "CREATE" | "UPDATE" | "DELETE" | "RESIZE" | "REPAIR" | "UPDATE_LABELS"
[src]

The operation type.

§
readonly status?: ClusterOperationStatus
[src]

Output only. Current operation status.

§
readonly statusHistory?: ClusterOperationStatus[]
[src]

Output only. The previous operation status.

§
readonly warnings?: string[]
[src]

Output only. Errors encountered during operation execution.