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

    Interface IPv4PrivateAllocationSpec

    interface IPv4PrivateAllocationSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1alpha1.IPv4PrivateAllocationSpec";
        cidr: string;
        pool?:
            | { $case: "subnetId"; subnetId: string }
            | { $case: "poolId"; poolId: string };
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1alpha1.IPv4PrivateAllocationSpec"
    cidr: string

    CIDR block for IPv4 Allocation. May be a single IP address (such as 10.2.3.4), a prefix length (such as /24) or a CIDR-formatted string (such as 10.1.2.0/24). Random address (/32) from pool would be allocated if field is omitted.

    pool?:
        | { $case: "subnetId"; subnetId: string }
        | { $case: "poolId"; poolId: string }