import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TransportType } from "./transporttype.js"; /** * A container port object represents the transport configruations for how your server will listen. */ export type ContainerPort = { /** * Transport type specifies the underlying communication protocol to the exposed port. */ transportType: TransportType; port: number; /** * Readable name for the port. */ name: string; }; /** @internal */ export declare const ContainerPort$inboundSchema: z.ZodType; /** @internal */ export type ContainerPort$Outbound = { transportType: string; port: number; name: string; }; /** @internal */ export declare const ContainerPort$outboundSchema: z.ZodType; export declare function containerPortToJSON(containerPort: ContainerPort): string; export declare function containerPortFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=containerport.d.ts.map