import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AutoscalerConfig } from "./autoscalerconfig.js"; import { NodeShape } from "./nodeshape.js"; /** * A fleet is a collection of nodes across your regions that can scale up and down based on demand. */ export type Fleet = { nodeShape: NodeShape; autoscalerConfig?: AutoscalerConfig | undefined; /** * Readable name for a fleet. Must be unique within an organization. */ name: string; /** * System generated unique identifier for an organization. Not guaranteed to have a specific format. */ orgId: string; /** * The id of the fleet. */ fleetId: string; }; /** @internal */ export declare const Fleet$inboundSchema: z.ZodType; export declare function fleetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fleet.d.ts.map