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

AutoscalingPolicyScaleInControl

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

Configuration that allows for slower scale in so that even if Autoscaler recommends an abrupt scale in of a MIG, it will be throttled as specified by the parameters below.

interface AutoscalingPolicyScaleInControl {
maxScaledInReplicas?: FixedOrPercent;
timeWindowSec?: number;
}

§Properties

§
maxScaledInReplicas?: FixedOrPercent
[src]

Maximum allowed number (or %) of VMs that can be deducted from the peak recommendation during the window autoscaler looks at when computing recommendations. Possibly all these VMs can be deleted at once so user service needs to be prepared to lose that many VMs in one step.

§
timeWindowSec?: number
[src]

How far back autoscaling looks when computing recommendations to include directives regarding slower scale in, as described above.