@nebius/js-sdk - v0.1.41
    Preparing search index...

    Interface RuleEgress

    Defines match for outgoing traffic.

    interface RuleEgress {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.RuleEgress";
        destinationCidrs: string[];
        destinationPorts: number[];
        destinationSecurityGroupId: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.RuleEgress"
    destinationCidrs: string[]

    CIDR blocks as the destination. Optional. Empty list means any address. Must be a valid IPv4. Maximum of 8 CIDRs can be specified.

    destinationPorts: number[]

    List of ports to which the rule applies. Optional. Empty list means any port. Valid range: 1–65535. Maximum of 8 ports can be specified.

    destinationSecurityGroupId: string

    ID of the referenced Security Group as the destination.