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 | トークンID | header | トークン発行 にて払い出されたID |
pool_id | プールID | URI | プールIDを指定します。POOL一覧取得 にて任意のプールIDをご確認ください。 |
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" \ ネットワークエンドポイント/lb/pools/プールID
-
Response
HTTP/1.1 200 OK
Date: Wed, 04 Apr 2018 03:47:02 GMT
Server: Apache
Content-Length: 521
Content-Type: application/json
{
"pool": {
"status": "ACTIVE",
"lb_method": "LEAST_CONNECTIONS",
"protocol": "TCP",
"description": "",
"health_monitors": [],
"members": [
"メンバーID",
"メンバーID"
],
"status_description": null,
"id": "プールID",
"vip_id": "VIP ID",
"name": "プール名",
"admin_state_up": true,
"subnet_id": "サブネットID",
"tenant_id": "テナントID",
"health_monitors_status": [],
"provider": "lbnat1"
}
}