/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const NodeFamilyId = { FamilyAmd6412: "family-amd64-1-2", FamilyAmd6414: "family-amd64-1-4", FamilyL414: "family-l4-1-4", FamilyL4112: "family-l4-1-12", FamilyH100pcie: "family-h100pcie", FamilyH100sxm5: "family-h100sxm5", FamilyH200sxm5: "family-h200sxm5", } as const; export type NodeFamilyId = OpenEnum; /** @internal */ export const NodeFamilyId$inboundSchema: z.ZodType< NodeFamilyId, z.ZodTypeDef, unknown > = openEnums.inboundSchema(NodeFamilyId);