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

    Interface Route

    Routes determine how network traffic is directed within a VPC network, specifying the path that traffic should take based on destination addresses.

    interface Route {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.Route";
        metadata?: ResourceMetadata;
        spec?: RouteSpec;
        status?: RouteStatus;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.Route"
    metadata?: ResourceMetadata

    metadata.parent_id represents the RouteTable.

    spec?: RouteSpec

    Specification of the route's configuration.

    status?: RouteStatus

    Current status of the route.