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

    Interface IPv4PublicAllocationSpec

    Public IPv4 address configuration for the allocation.

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

    A single IP address (e.g. 1.2.3.4), a CIDR block (e.g., "1.2.3.4/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 }