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

    Interface AttachedFilesystemSpec

    interface AttachedFilesystemSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.compute.v1.AttachedFilesystemSpec";
        attachMode: AttachedFilesystemSpec_AttachMode;
        mountTag: string;
        type?: {
            $case: "existingFilesystem";
            existingFilesystem: ExistingFilesystem;
        };
        [key: symbol]: Uint8Array<ArrayBufferLike>
        | (() => unknown)
        | undefined;
    }

    Indexable

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

    Properties

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

    Specifies the user-defined identifier, allowing to use it as a device in mount command.

    type?: { $case: "existingFilesystem"; existingFilesystem: ExistingFilesystem }