import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Region } from "./region.js"; export type StaticProcessAllocationConfig = { /** * Whether autoscaling is enabled in this region. When enabled, `targetProcesses` is managed by the Process Autoscaler * * @remarks * in accordance with the `processAutoscalerConfig` field set on the application's `serviceConfig`. */ autoscalingEnabled?: boolean | undefined; /** * The maximum number of running processes. * * @remarks * Invariant: minProcesses <= maxProcesses */ maxProcesses: number; /** * The target number of running processes * * @remarks * When autoscaling is enabled, this field is managed by the Process Autoscaler */ targetProcesses: number; /** * The minimum number of running processes. * * @remarks * Invariant: 0 <= minProcesses < targetProcesses */ minProcesses: number; region: Region; }; /** @internal */ export declare const StaticProcessAllocationConfig$inboundSchema: z.ZodType; export declare function staticProcessAllocationConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=staticprocessallocationconfig.d.ts.map