接口功能介绍
调用此接口可查询共享带宽实例详情。
接口约束
无。
URI
GET /v4/bandwidth/describe
请求参数
Query 参数
参数 | 参数类型 | 是否必填 | 说明 | 示例 |
---|---|---|---|---|
regionID | String | 是 | 共享带宽所在的区域id | 81f7728662dd11ec810800155d307d5b |
projectID | String | 否 | 企业项目 ID,默认为"0" | 0 |
bandwidthID | String | 是 | 查询的共享带宽id。 | bandwidth-sjwu65pf9t |
响应参数
参数 | 参数类型 | 说明 | 示例 |
---|---|---|---|
statusCode | Integer | 返回状态码(800为成功,900为失败) | 800 |
message | String | statusCode为900时的错误信息; statusCode为800时为success, 英文 | success |
description | String | statusCode为900时的错误信息; statusCode为800时为成功, 中文 | 成功 |
errorCode | String | statusCode为900时为业务细分错误码,三段式:product.module.code; statusCode为800时为SUCCESS | SUCCESS |
returnObj | Object | object | 返回查询的共享带宽详细信息。 |
表 returnObj
参数 | 参数类型 | 示例 | 说明 |
---|---|---|---|
id | String | bandwidth-sjwu65pf9t | 共享带宽id。 |
status | String | 共享带宽状态: ACTIVE / EXPIRED / FREEZING | ACTIVE |
bandwidth | int | 5 | 共享带宽的带宽峰值, 单位:Mbps。 |
name | String | share_ip_069f | 共享带宽名称。 |
eips | Array of Objects | 绑定的弹性 IP 列表 | 见下表 |
表 eips
参数 | 参数类型 | 示例 | 说明 |
---|---|---|---|
ip | String | 100.124.10.1 | 弹性 IP 的 IP |
eipID | String | eip-ieeq36299f | 弹性 IP 的 ID |
请求示例
GET /v4/bandwidth/describe?regionID=81f7728662dd11ec810800155d307d5b&bandwidthID=bandwidth-sjwu65pf9t
请求体body
无。
响应示例
{
"statusCode": 800,
"errorCode": "SUCCESS",
"message": "success",
"description": "成功",
"returnObj": {
"id": "bandwidth-sjwu65pf9t",
"status": "ACTIVE",
"bandwidth": 5,
"name": "share_ip_069f",
"eips": [
{
"ip": "100.124.10.1",
"eipID": "eip-ieeq36299f"
}
]
}
}
状态码
状态码 | 描述 |
---|---|
200 | 表示请求成功。 |
错误码
请参考 错误码说明。