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

NodeGroupAutoscalingPolicy

import type { NodeGroupAutoscalingPolicy } from "https://googleapis.deno.dev/v1/compute:v1.ts";
interface NodeGroupAutoscalingPolicy {
maxNodes?: number;
minNodes?: number;
mode?:
| "MODE_UNSPECIFIED"
| "OFF"
| "ON"
| "ONLY_SCALE_OUT";
}

§Properties

§
maxNodes?: number
[src]

The maximum number of nodes that the group should have. Must be set if autoscaling is enabled. Maximum value allowed is 100.

§
minNodes?: number
[src]

The minimum number of nodes that the group should have.

§
mode?: "MODE_UNSPECIFIED" | "OFF" | "ON" | "ONLY_SCALE_OUT"
[src]

The autoscaling mode. Set to one of: ON, OFF, or ONLY_SCALE_OUT. For more information, see Autoscaler modes.