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

    Interface IPv4PrivateAllocationSpec

    Private IPv4 address configuration for the allocation.

    interface IPv4PrivateAllocationSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.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.v1.IPv4PrivateAllocationSpec"
    cidr: string

    A single IP address (e.g 10.1.2.1), a CIDR block (e.g., "10.1.2.0/24") or a prefix length (e.g., "/32"). If prefix length is specified, the CIDR block will be auto-allocated from the available space in the pool or subnet. If not specified, defaults to "/32".

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