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

ScalingConfig

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

Represents the scaling configuration of a metastore service.

interface ScalingConfig {
instanceSize?:
| "INSTANCE_SIZE_UNSPECIFIED"
| "EXTRA_SMALL"
| "SMALL"
| "MEDIUM"
| "LARGE"
| "EXTRA_LARGE";
scalingFactor?: number;
}

§Properties

§
instanceSize?: "INSTANCE_SIZE_UNSPECIFIED" | "EXTRA_SMALL" | "SMALL" | "MEDIUM" | "LARGE" | "EXTRA_LARGE"
[src]

An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1))

§
scalingFactor?: number
[src]

Scaling factor, increments of 0.1 for values less than 1.0, and increments of 1.0 for values greater than 1.0.