Description

ヘルスモニタの一覧を取得します。

Request URL

Load Balancer API

GET /v2.0/lbaas/healthmonitors

Request Json

This operation does not accept a request body.

Request Parameters

Parameter Value Style Description
X-Auth-Token トークン header トークンの情報を指定します。
トークンの発行方法は、トークン発行 にてご確認ください。

Response Code

Success

200

Example

Request

curl -X GET \
-H "Accept: application/json" \
-H "X-Auth-Token: トークン" \
https://lbaas.c3j1.conoha.io/v2.0/lbaas/healthmonitors

Response

{
	"healthmonitors": [
		{
			"id": "ヘルスモニタID",
			"name": "ヘルスモニタ名",
			"type": "TCP",
			"delay": 30,
			"timeout": 10,
			"max_retries": 3,
			"url_path": null,
			"expected_codes": null,
			"admin_state_up": true,
			"project_id": "テナントID",
			"pools": [
				{
					"id": "プールID"
				}
			],
			"provisioning_status": "ACTIVE",
			"operating_status": "ONLINE",
			"tenant_id": "テナントID"
		}
	]
}

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