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

ClusterOperationMetadata

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

Metadata describing the operation.

interface ClusterOperationMetadata {
readonly childOperationIds?: string[];
readonly clusterName?: string;
readonly clusterUuid?: string;
readonly description?: string;
readonly labels?: {
[key: string]: string;
}
;
readonly operationType?: string;
readonly status?: ClusterOperationStatus;
readonly statusHistory?: ClusterOperationStatus[];
readonly warnings?: string[];
}

§Properties

§
readonly childOperationIds?: string[]
[src]

Output only. Child operation ids

§
readonly clusterName?: string
[src]

Output only. Name of the cluster for the operation.

§
readonly clusterUuid?: string
[src]

Output only. Cluster UUID for the 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 operationType?: string
[src]

Output only. 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.