@nebius/js-sdk - v0.2.54
    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

      Defines match for outgoing traffic.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Defines match for outgoing traffic.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.vpc.v1.RuleEgress"

    Contains the fully qualified protobuf type name.

    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.