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

    Interface SubnetSpec

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

    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

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

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.vpc.v1.SubnetSpec 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.SubnetSpec"

    Contains the fully qualified protobuf type name.

    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.