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

    Interface PoolSpec

    interface PoolSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.PoolSpec";
        cidrs: PoolCidr[];
        sourcePoolId: string;
        version: IpVersion;
        visibility: IpVisibility;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.PoolSpec"
    cidrs: PoolCidr[]

    CIDR blocks defined by the pool.

    sourcePoolId: string

    ID of the source pool. CIDR blocks of a pool must be within the range defined by its source pool.

    version: IpVersion

    IP version of the pool.

    visibility: IpVisibility

    Configures whether the pool is private or public. Only public pools IP addresses are routable in the Internet.