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

    Interface SubnetCidr

    interface SubnetCidr {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.SubnetCidr";
        cidr: string;
        maxMaskLength: Long;
        state: AddressBlockState;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

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

    A CIDR block (e.g., "10.1.2.0/24") or a prefix length (e.g., "/24"). If prefix length is specified, the CIDR block will be auto-allocated from the network's available space.

    maxMaskLength: Long

    Maximum mask length for an allocation from this block. Defaults to /32 for IPv4.

    Controls provisioning of IP addresses from the CIDR block . Defaults to AVAILABLE.