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

    Interface AttachedDiskSpec

    interface AttachedDiskSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.compute.v1.AttachedDiskSpec";
        attachMode: AttachedDiskSpec_AttachMode;
        deviceId: string;
        type?: { $case: "existingDisk"; existingDisk: ExistingDisk };
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.compute.v1.AttachedDiskSpec"
    deviceId: string

    Specifies the user-defined identifier, allowing to use '/dev/disk/by-id/virtio-{device_id}' as a device path in mount command.

    type?: { $case: "existingDisk"; existingDisk: ExistingDisk }