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

RepairClusterRequest

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

A request to repair a cluster.

interface RepairClusterRequest {
clusterUuid?: string;
gracefulDecommissionTimeout?: number;
nodePools?: NodePool[];
parentOperationId?: string;
requestId?: string;
}

§Properties

§
clusterUuid?: string
[src]

Optional. Specifying the cluster_uuid means the RPC will fail (with error NOT_FOUND) if a cluster with the specified UUID does not exist.

§
gracefulDecommissionTimeout?: number
[src]

Optional. Timeout for graceful YARN decommissioning. Graceful decommissioning facilitates the removal of cluster nodes without interrupting jobs in progress. The timeout specifies the amount of time to wait for jobs finish before forcefully removing nodes. The default timeout is 0 for forceful decommissioning, and the maximum timeout period is 1 day. (see JSON Mapping—Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).graceful_decommission_timeout is supported in Dataproc image versions 1.2+.

§
nodePools?: NodePool[]
[src]

Optional. Node pools and corresponding repair action to be taken. All node pools should be unique in this request. i.e. Multiple entries for the same node pool id are not allowed.

§
parentOperationId?: string
[src]

Optional. operation id of the parent operation sending the repair request

§
requestId?: string
[src]

Optional. A unique ID used to identify the request. If the server receives two RepairClusterRequests with the same ID, the second request is ignored, and the first google.longrunning.Operation created and stored in the backend is returned.Recommendation: Set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.