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

    Interface RouteSpec

    Represents the nebius.vpc.v1.RouteSpec protobuf message.

    interface RouteSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.RouteSpec";
        description: string;
        destination?: DestinationMatch;
        nextHop?: NextHop;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.vpc.v1.RouteSpec protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.vpc.v1.RouteSpec protobuf message.

            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.RouteSpec"

    Contains the fully qualified protobuf type name.

    description: string

    Optional description of the route.

    destination?: DestinationMatch

    Destination for the route. Each destination CIDR must be unique within a route table. When multiple routes match a destination IP, the route with the longest matching prefix (most specific match) is selected.

    nextHop?: NextHop

    Next hop configuration specifying where to send matching traffic.