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

    Interface RuleIngress

    Defines match for incoming traffic.

    interface RuleIngress {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.RuleIngress";
        destinationPorts: number[];
        sourceCidrs: string[];
        sourceSecurityGroupId: 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.RuleIngress"
    destinationPorts: number[]

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

    sourceCidrs: string[]

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

    sourceSecurityGroupId: string

    ID of the referenced Security Group as the source.