import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AutoscalerConfig = { /** * If vCPU utilization rate is above this threshold percentage, the autoscaler will scale up. * * @remarks * If set to 100 this disables preemptive autoscaling (i.e. nodes will only scale up when you * run out of capacity and request more resources). */ scaleUpThreshold: number; }; /** @internal */ export declare const AutoscalerConfig$inboundSchema: z.ZodType; /** @internal */ export type AutoscalerConfig$Outbound = { scaleUpThreshold: number; }; /** @internal */ export declare const AutoscalerConfig$outboundSchema: z.ZodType; export declare function autoscalerConfigToJSON(autoscalerConfig: AutoscalerConfig): string; export declare function autoscalerConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autoscalerconfig.d.ts.map