ヘルスモニタ詳細取得
Description
ヘルスモニタの詳細を取得します。
Request URL
Network API v2.0 GET /v2.0/lb/health_monitors/{health_monitor_id}
Request Json
This operation does not accept a request body.
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークンID | header | トークン発行 にて払い出されたID |
health_monitor_id | ヘルスモニタID | URI | ヘルスモニタIDを指定します。ヘルスモニタ一覧取得 にて任意のヘルスモニタ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/health_monitors/ヘルスモニタID
-
Response
HTTP/1.1 200 OK
Date: Sat, 07 Apr 2018 17:58:45 GMT
Server: Apache
Content-Length: 211
Content-Type: application/json
{
"health_monitor": {
"admin_state_up": true,
"tenant_id": "テナントID",
"delay": 監視間隔,
"max_retries": 3,
"timeout": 5,
"pools": [],
"type": "プロトコル",
"id": "ヘルスモニタID"
}
}