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

    Interface AllocationDetails

    interface AllocationDetails {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.AllocationDetails";
        allocatedCidr: string;
        poolId: string;
        subnetId: string;
        version: IpVersion;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.AllocationDetails"
    allocatedCidr: string

    The actual CIDR block that has been allocated.

    poolId: string

    ID of the pool from which this allocation was made.

    subnetId: string

    ID of the subnet associated with this allocation. Populated when created with explicit subnet_id, from a subnet-specific pool, or when assigned to a resource.

    version: IpVersion

    The IP version of this allocation (IPv4 or IPv6).