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

    Interface AllowedCidr

    A CIDR-based egress allow rule with optional port restrictions.

    interface AllowedCidr {
        cidr: string;
        ports?: Runloop.PortRule[] | null;
    }
    Index

    Properties

    Properties

    cidr: string

    IPv4 CIDR block in canonical form (host bits zero), e.g. '10.12.0.0/16'.

    ports?: Runloop.PortRule[] | null

    (Optional) Ports allowed for this CIDR. Empty or omitted means all ports and protocols.