import * as z from "zod/v3"; import { AutoscalerConfig, AutoscalerConfig$Outbound } from "./autoscalerconfig.js"; import { NodeShapeId } from "./nodeshapeid.js"; export type UpdateFleetV2 = { nodeShapeId?: NodeShapeId | undefined; autoscalerConfig: AutoscalerConfig; /** * Readable name for a fleet. Must be unique within an organization. */ name?: string | undefined; }; /** @internal */ export type UpdateFleetV2$Outbound = { nodeShapeId?: string | undefined; autoscalerConfig: AutoscalerConfig$Outbound; name?: string | undefined; }; /** @internal */ export declare const UpdateFleetV2$outboundSchema: z.ZodType; export declare function updateFleetV2ToJSON(updateFleetV2: UpdateFleetV2): string; //# sourceMappingURL=updatefleetv2.d.ts.map