Description

VMにアタッチされているボリュームの情報を一覧で取得します。

Request URL

Compute API

GET /v2/​{tenant_id}​/servers/​{server_id}​/os-volume_attachments

Request Json

This operation does not accept a request body.

Request Parameters

Parameter Value Style Description
X-Auth-Token トークンID header トークンIDを指定します。
tenant_id テナントID path テナントIDを指定します。
server_id サーバーID path サーバーIDを指定します。

Response Code

Success

200

Example

Request

curl -i -X GET \
-H "Accept: application/json" \
-H "X-Auth-Token: トークンID" \
https://compute.tyo1.conoha.io/v2/テナントID/servers/サーバーID/os-volume_attachments

Response

HTTP/1.1 200 OK
Date: Fri, 12 Dec 2014 01:21:34 GMT
Server: Apache
Content-Length: 358
Content-Type: application/json

{
    "volumeAttachments": [
        {
            "device": "/dev/vdb",
            "id": "997d6052-4b17-4500-8d41-c08fb9667aae",
            "serverId": "6d9e8d64-236d-4057-a899-f4cf797405cf",
            "volumeId": "997d6052-4b17-4500-8d41-c08fb9667aae"
        }
    ]
}

ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。