接口功能介绍
网卡状态批量查询。
接口约束
无。
URI
GET /v4/ports/check-status-batch
请求参数
Query 参数
参数 | 参数类型 | 是否必填 | 说明 | 示例 |
---|---|---|---|---|
regionID | String | 是 | 区域id | |
portIDs | String | 是 | 多个网卡用「,」拼接起来, port-id,port-id |
响应参数
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
statusCode | Integer | 返回状态码(800为成功,900为失败) | 800 |
message | String | statusCode为900时的错误信息, 英文 | |
description | String | statusCode为900时的错误信息,中文 | |
returnObj | Object of Array | 接口业务数据 | |
errorCode | String | 业务细分错误码,三段式:product.module.code |
表 returnObj
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
id | String | 网卡 id | port-xxxx |
status | String | 网卡状态 | ready / unready / error / unknown |
请求示例
GET /v4/ports/check-status-batch?regionID=xxxx&portIDs=port-1,port-2
响应示例
{
"statusCode":800,
"errCode":"SUCCESS",
"message":"success",
"descritption": "",
"returnObj": [{
"id": "port-1",
"status": "ready"
},
{
"id": "port-2",
"status": "unready"
}]
}
状态码
状态码 | 描述 |
---|---|
200 | 表示请求成功。 |
错误码
请参考 错误码说明。