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

    Interface SubnetSpec

    interface SubnetSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.SubnetSpec";
        ipv4PrivatePools?: IPv4PrivateSubnetPools;
        ipv4PublicPools?: IPv4PublicSubnetPools;
        networkId: string;
        routeTableId: 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.SubnetSpec"
    ipv4PrivatePools?: IPv4PrivateSubnetPools

    Private IPv4 address pools for this subnet. If unspecified, pools from the associated network are used.

    ipv4PublicPools?: IPv4PublicSubnetPools

    Public IPv4 address pools for this subnet. If unspecified, pools from the associated network are used.

    networkId: string

    ID of the network this subnet belongs to.

    routeTableId: string

    ID of the route table to associate with the subnet. If unspecified, the network's default route table is used.