/* * 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 Hosting = { Metal: "metal", Cloud: "cloud", Shared: "shared", } as const; export type Hosting = OpenEnum; /** @internal */ export const Hosting$inboundSchema: z.ZodType = openEnums.inboundSchema(Hosting);