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

ResizeNodeGroupRequest

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

A request to resize a node group.

interface ResizeNodeGroupRequest {
gracefulDecommissionTimeout?: number;
parentOperationId?: string;
requestId?: string;
size?: number;
}

§Properties

§
gracefulDecommissionTimeout?: number
[src]

Optional. Timeout for graceful YARN decommissioning. Graceful decommissioning (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/scaling-clusters#graceful_decommissioning) allows the removal of nodes from the Compute Engine node group without interrupting jobs in progress. This timeout specifies how long to wait for jobs in progress to finish before forcefully removing nodes (and potentially interrupting jobs). Default timeout is 0 (for forceful decommission), and the maximum allowed timeout is 1 day. (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).Only supported on Dataproc image versions 1.2 and higher.

§
parentOperationId?: string
[src]

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

§
requestId?: string
[src]

Optional. A unique ID used to identify the request. If the server receives two ResizeNodeGroupRequest (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.ResizeNodeGroupRequests) 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.

§
size?: number
[src]

Required. The number of running instances for the node group to maintain. The group adds or removes instances to maintain the number of instances specified by this parameter.