List HA Constitution Devices¶
Request¶
Response¶
HTTP Response Code¶
Response Code | Description |
---|---|
200 | OK |
400 | Request format is invalid |
401 | Unauthorized |
500 | Internal Server Error |
511 | Internal Server Error (Fail Service Order etc.) |
Response Parameter¶
item | type | format | description |
---|---|---|---|
code | String | - | This code is for determining the details of the error.FOV-H-**: Successful Completion. FOV-H-E**: Error has occurred. |
message | String | - | This message is shown when error has occurred. |
records | integer | - | Number of devices linked to the Tenant ID |
rows | list | - | Device list |
cell[0] | string | - | Internal use |
cell[1] | string | - | Rows Number |
cell[2] | string | - | This id determine HA set |
cell[3] | string | - | Host Name |
cell[4] | string | - | Menu |
cell[5] | string | - | Plan |
cell[6] | string | - | Redundancy |
cell[7] | string | - | Availability Zone |
cell[8] | string | - | Zone |
cell[9] | string | - | HA Link1 Network ID01 |
cell[10] | string | - | HA Link1 Subnet ID01 |
cell[11] | string | - | IP Address 01 |
cell[12] | string | - | HA Link2 Network ID02 |
cell[13] | string | - | HA Link2 Subnet ID02 |
cell[14] | string | - | IP Address 02 |
id | integer | - | Device ID |
status | integer | - | This value indicates normal or abnormal. 1:normal, 2:abnormal |
Sample Response Body¶
Normal Response¶
When locale is "ja"
{
"status": 1,
"message": "正常終了",
"code": "FOV-H-01",
"records": "2",
"rows": [{
"id": 1
"cell": ["false", 1, "A7865O", "CES1088", "UTM_HA", "02", "ha", "zone1_groupa", "lab3ec_zone1", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.125", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.126"]
},{
"id": 2
"cell": ["false", 2, "A7865O", "CES1090", "UTM_HA", "02", "ha", "zone1_groupb", "lab3ec_zone1", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.125", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.125"]
}]
}
When locale is "en"
{
"status": 1,
"message": "Successful completion",
"code": "FOV-H-01",
"records": "2",
"rows": [{
"id": 1
"cell": ["false", 1, "A7865O", "CES1088", "UTM_HA", "02", "ha", "zone1_groupa", "lab3ec_zone1", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.125", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.126"]
},{
"id": 2
"cell": ["false", 2, "A7865O", "CES1090", "UTM_HA", "02", "ha", "zone1_groupb", "lab3ec_zone1", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.125", "0625f39f-4e83-4bd7-92ab-ba47f0083d74", "aed4d057-afcd-4d8f-be17-75a9ecfeef0f", "192.168.2.125"]
}]
}
Error Response¶
When locale is "ja"
{
"code": "FOV-H-E",
"message": "システムエラーが発生しました。恐れ入りますが、チケットシステムでご連絡ください。",
"records": 0,
"rows": [],
"status": 2
}
When locale is "en"
{
"code": "FOV-H-E",
"message": "System error has occurred. Excuse me, please contact us at the ticket system.",
"records": 0,
"rows": [],
"status": 2
}