Description

ヘルスモニタを更新(変更)します。

Request URL

Network API

PUT /v2.0/lb/health_monitors/{health_monitor_id}

Request Json

{
   "health_monitor":{
      "delay":"監視間隔"
   }
}

Request Parameters

Parameter Value Style Description
X-Auth-Token トークンID header トークンIDを指定します。
delay
(Optional)
5-10 body 監視間隔を秒で指定します。
url_path
(Optional)
監視先のパス body 監視先のパスを指定します。
「type」にて「HTTP」を指定している場合に使用します。

Response Code

Success

200

Example

Request

curl -i -X PUT \
-H "Accept: application/json" \
-H "X-Auth-Token: トークンID" \
-d '{"health_monitor": {"delay": "監視間隔"}}' \
https://networking.tyo1.conoha.io/v2.0/lb/health_monitors/ヘルスモニタID

Response

HTTP/1.1 200 OK
Server: openresty/1.7.10.1
Date: Fri, 08 May 2015 11:49:29 GMT
Content-Type: application/json
Content-Length: 263
Connection: keep-alive

{
    "health_monitor": {
        "admin_state_up": true,
        "tenant_id": "22394afc818d471ca2f0308c06ae7460",
        "delay": 5,
        "expected_codes": "200-299",
        "max_retries": 5,
        "http_method": "GET",
        "timeout": 5,
        "pools": [],
        "url_path": "/check",
        "type": "HTTP",
        "id": "1e898fd5-193d-47f7-8b53-10945399a183"
    }
}

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