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

    Interface RouteSpec

    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
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.RouteSpec"
    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.