/** *

Describes information about the ports on your virtual private server (or instance).

*/ export interface _PortInfo { /** *

The first port in the range.

*/ fromPort?: number; /** *

The last port in the range.

*/ toPort?: number; /** *

The protocol.

*/ protocol?: "tcp" | "all" | "udp" | string; } export declare type _UnmarshalledPortInfo = _PortInfo;