Go to main content
Oracle® ZFS Storage Appliance RESTful API ガイド、Release OS8.6.x

印刷ビューの終了

更新: 2016 年 9 月
 
 

プールの一覧表示

このコマンドは、システム上のすべてのストレージプールのプロパティーを一覧表示します。成功したコマンドに対し、HTTP ステータス 200 (OK) が返されます。HTTP 本文には、JSON オブジェクトのリストが含まれ、各プールについて説明しています。次の表に、プロパティー名を示します。

表 62  ストレージプールのプロパティー
名前
説明
string
pool
ターゲットのプール名
string
profile
データデバイスのプロファイル
string
state
プールの状態 (「online」、「offline」、「exported」)
string
asn
プールを所有するアプライアンスのシリアル番号
string
peer
クラスタ化されたシステムにおいて、ピアノードの ASN
string
owner
プールを所有するシステムのホスト名

リクエストの例:

GET /api/storage/v1/pools HTTP/1.1
Host: zfs-storage.example.com
Accept: application/json

レスポンスの例:

HTTP/1.1 200 OK
Content-Type: application/json

{
    "pools": [{
        "profile": "mirror3",
            "name": "platinum",
            "peer": "00000000-0000-0000-0000-000000000000",
        "state": "online",
        "owner": "zfs-storage",
        "asn": "2f4aeeb3-b670-ee53-e0a7-d8e0ae410749"
    }, {
        "profile": "raidz1",
        "name": "gold",
        "peer": "00000000-0000-0000-0000-000000000000",
        "state": "online",
        "owner": "zfs-storage",
        "asn": "2f4aeeb3-b670-ee53-e0a7-d8e0ae410749"
    }]
}