/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 5a3464a4f52b */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; /** * Cloud where the private manager will be deployed. */ export const PrivateManagerCloud = { Aws: "aws", Gcp: "gcp", Azure: "azure", } as const; /** * Cloud where the private manager will be deployed. */ export type PrivateManagerCloud = ClosedEnum; /** @internal */ export const PrivateManagerCloud$outboundSchema: z.ZodEnum< typeof PrivateManagerCloud > = z.enum(PrivateManagerCloud);