nuxt-app
    Preparing search index...

    Interface LocalStoragePoolDTO

    ローカルストレージプールオブジェクト

    interface LocalStoragePoolDTO {
        createdAt: string;
        devFile: string;
        id: string;
        name: string;
        nodeId: string;
        totalSize: number;
        usedSize: number;
    }
    Index

    Properties

    createdAt: string

    ストレージプールが作成された日時

    devFile: string

    ストレージデバイスのパス

    id: string

    ストレージプールを識別するための一意なID

    name: string

    ストレージプールの名前

    nodeId: string

    ストレージプールが存在する物理ノードのID

    totalSize: number

    ストレージプールの総サイズ(バイト単位)

    usedSize: number

    使用中のストレージサイズ(バイト単位)