/* * 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"; /** * Represents the valid metric names available to measure/manage fleets in a given region */ export const FleetMetricName = { ProvisionedTotal: "provisionedTotal", ProvisionedBareMetal: "provisionedBareMetal", ProvisionedCloud: "provisionedCloud", Utilized: "utilized", SystemOverhead: "systemOverhead", } as const; /** * Represents the valid metric names available to measure/manage fleets in a given region */ export type FleetMetricName = OpenEnum; /** @internal */ export const FleetMetricName$outboundSchema: z.ZodType< string, z.ZodTypeDef, FleetMetricName > = openEnums.outboundSchema(FleetMetricName);