POOL詳細取得
Description
POOLの詳細を取得します。
Request URL
Network API v2.0
GET /v2.0/lb/pools/{pool_id}
Request Json
This operation does not accept a request body.
Request Parameters
| Parameter | Value | Style | Description |
|---|---|---|---|
| X-Auth-Token | Userトークン | header | トークン発行 にて払い出されたID |
| pool_id | プールID | URI | プールIDを指定します。POOL一覧取得にてご確認ください。 |
Response
-
Normal response codes
200
Example
-
Request
curl -i -X GET \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "X-Auth-Token: トークンID" \ https://networking.jpt1.cloud.z.com/v2.0/lb/pools/プールID
-
Response
HTTP/1.1 200 OK
Date: Fri, 08 Jul 2016 07:57:35 GMT
Server: Apache
Content-Length: 427
Content-Type: application/json
{
"pool": {
"admin_state_up": true,
"description": "",
"health_monitors": [],
"health_monitors_status": [],
"id": "プールID",
"lb_method": "バランシング方式",
"members": [],
"name": "プールの名前",
"protocol": "プロトコル",
"provider": "lbdsr1",
"status": "ACTIVE",
"status_description": null,
"subnet_id": "サブネットID",
"tenant_id": "テナントID",
"vip_id": null
}
}