import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The name of the metric. * * @remarks * Allowed values: * `concurrent-requests`: Tracks the number of concurrent requests that a single Process handles. */ export declare const MetricName: { readonly ConcurrentRequests: "concurrent-requests"; }; /** * The name of the metric. * * @remarks * Allowed values: * `concurrent-requests`: Tracks the number of concurrent requests that a single Process handles. */ export type MetricName = OpenEnum; export type AutoscalerTargetMetric = { metricValue: number; /** * The name of the metric. * * @remarks * Allowed values: * `concurrent-requests`: Tracks the number of concurrent requests that a single Process handles. */ metricName: MetricName; }; /** @internal */ export declare const MetricName$inboundSchema: z.ZodType; /** @internal */ export declare const MetricName$outboundSchema: z.ZodType; /** @internal */ export declare const AutoscalerTargetMetric$inboundSchema: z.ZodType; /** @internal */ export type AutoscalerTargetMetric$Outbound = { metricValue: number; metricName: string; }; /** @internal */ export declare const AutoscalerTargetMetric$outboundSchema: z.ZodType; export declare function autoscalerTargetMetricToJSON(autoscalerTargetMetric: AutoscalerTargetMetric): string; export declare function autoscalerTargetMetricFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autoscalertargetmetric.d.ts.map