node-ovh-ts
Version:
OVH API wrapper library for TypeScript
17 lines (15 loc) • 447 B
TypeScript
type DedicatedCloudAutoScaleConfig = {
cpuMaxThreshold?: number;
cpuMinThreshold?: number;
description?: string | null;
id?: number;
maxNumOfHosts?: number;
memMaxThreshold?: number;
memMinThreshold?: number;
minNumOfHosts?: number;
storageMaxThreshold?: number;
timeDelayScaleIn?: number;
timeDelayScaleOut?: number;
timeDelayStorageScaleOut?: number;
};
export { DedicatedCloudAutoScaleConfig };