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

ReadPoolAutoScaleConfig

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

The read pool auto-scale configuration.

interface ReadPoolAutoScaleConfig {
disableScaleIn?: boolean;
enabled?: boolean;
maxNodeCount?: number;
minNodeCount?: number;
targetMetrics?: TargetMetric[];
}

§Properties

§
disableScaleIn?: boolean
[src]

Indicates whether read pool auto scaling supports scale in operations (removing nodes).

§
enabled?: boolean
[src]

Indicates whether read pool auto scaling is enabled.

§
maxNodeCount?: number
[src]

Maximum number of read pool nodes to be maintained.

§
minNodeCount?: number
[src]

Minimum number of read pool nodes to be maintained.

§
targetMetrics?: TargetMetric[]
[src]

Optional. Target metrics for read pool auto scaling.