@runloop/api-client - v1.26.0
    Preparing search index...

    Interface PortRule

    A port or port range allowed for a CIDR egress rule.

    interface PortRule {
        port: number;
        end_port?: number | null;
        protocol?: "TCP" | "UDP" | null;
    }
    Index

    Properties

    port: number

    The allowed port (1-65535), or the start of a port range.

    end_port?: number | null

    (Optional) Inclusive end of the port range (port-65535). Omit for a single port.

    protocol?: "TCP" | "UDP" | null

    L4 protocol for a port rule.