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

      Defines match for incoming traffic.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Defines match for incoming 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.RuleIngress"

    Contains the fully qualified protobuf type name.

    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.