Description

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

Request URL

Compute API

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

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-interface

Response

HTTP/1.1 200 OK
Date: Wed, 10 Dec 2014 04:31:00 GMT
Server: Apache
Content-Length: 364
Content-Type: application/json

{
    "interfaceAttachments": [
        {
            "fixed_ips": [
                {
                    "ip_address": "133.130.49.xxx",
                    "subnet_id": "0569c47a-d349-4a23-a45b-ae9a50d9d847"
                },
                {
                    "ip_address": "2400:8500:1301:727:133:130:49:xxxx",
                    "subnet_id": "6ead51c1-582a-49ef-8026-203744c8402d"
                }
            ],
            "mac_addr": "02:01:85:82:31:a3",
            "net_id": "d3ae282c-3c79-4bb6-ae9d-40318bc1059e",
            "port_id": "51a11bb6-b569-4158-b716-8564a85fb1c4",
            "port_state": "ACTIVE"
        }
    ]
}

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