/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: a308a9df3201 */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export const KubernetesClusterSource = { Create: "create", Existing: "existing", } as const; export type KubernetesClusterSource = ClosedEnum< typeof KubernetesClusterSource >; /** @internal */ export const KubernetesClusterSource$inboundSchema: z.ZodEnum< typeof KubernetesClusterSource > = z.enum(KubernetesClusterSource); /** @internal */ export const KubernetesClusterSource$outboundSchema: z.ZodEnum< typeof KubernetesClusterSource > = KubernetesClusterSource$inboundSchema;