PortMapping type

Signature:

export declare type PortMapping = {
    containerPort: number;
    protocol?: "tcp" | "udp";
    hostPort: HostPort;
    hostAddress?: string;
    group?: string;
};

References: HostPort