import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ManagedServiceName } from "./managedservicename.js"; import { ManagedServiceStatus } from "./managedservicestatus.js"; export type ManagedServiceRecord = { name: ManagedServiceName; containerPort: number; assignmentGeneration: number; status?: ManagedServiceStatus | undefined; failureReason?: string | null | undefined; }; /** @internal */ export declare const ManagedServiceRecord$inboundSchema: z.ZodType; /** @internal */ export type ManagedServiceRecord$Outbound = { name: string; container_port: number; assignment_generation: number; status?: string | undefined; failure_reason?: string | null | undefined; }; /** @internal */ export declare const ManagedServiceRecord$outboundSchema: z.ZodType; export declare function managedServiceRecordToJSON(managedServiceRecord: ManagedServiceRecord): string; export declare function managedServiceRecordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=managedservicerecord.d.ts.map