查询VPN容量
功能
查询VPN虚拟私有网服务,即查询VPN专线条数、VPN连接网关的总数等。
SLA项 |
定义 |
---|---|
请求成功率 |
≥99% |
可用性 |
Tier 2 |
数据一致性 |
强一致 |
吞吐量 |
60 次/分钟 |
TP50请求时延 |
200 ms |
TP99.9请求时延 |
300 ms |
注意事项
无
调用方法
GET
URI
/rest/dataapi/homs/open-api/v1/CloudService/capacity
路径参数
无
查询参数
无
请求
- 请求header参数
参数
是否必选
类型
值域
说明
X-APIG-Appcode
是
string
无
由SRE分配的AppCode。
x-auth-token
是
string
无
调用方APIG的IAM认证token。
x-hcso-domainid
是(HCSO场景)
否(其他场景)
string
无
接入的租户ID。
x-hcso-appcode
是
string
无
由SRE分配的AppCode
- 查询参数
参数
是否必选
类型
值域
说明
begin_time
是
int
无
查询开始时间(毫秒时间戳)。
end_time
是
int
无
查询结束时间(毫秒时间戳)。
service_type
否
string
VPN
服务类型。
zone_type
否
string
VPN_POD
VPN专属区。
page_size
是
int
0~1000
页大小。
offset_value
是
int
无
查询起始值。
- 请求body参数
无
- 请求示例
GET /rest/dataapi/homs/open-api/v1/CloudService/capacity?service_type=VPN HTTP/1.1 Host: example.com Content-Type: application/json Accept: application/json X-APIG-Appcode: xxx x-auth-token: xxx x-hcso-domainid:xxx x-hcso-appcode:xxx
响应
- 响应参数
参数
是否必选
类型
值域
说明
code
是
String
无
返回码。
msg
是
String
无
返回消息。
total
是
Integer
无
数据条数。
service_type
否
String
无
云服务名,标识资源所属的云服务VPN虚拟专用网络。
timestamp
是
Long
无
时间戳。
region
是
String
无
资源所属region中文名。
zone_type
否
String
无
资源所属的区域类型:VPN_POD租户区用。
total(list内)
否
String
无
可用总量,xx条(Connetion线路数),xx个(Gateway网关数)。
allocated
是
String
无
已分配使用量,xx条(Connetion线路数),xx个(Gateway网关数)。
metric_type
否
String
无
VPN服务资源规格容量指标(Connetion线路数;Gateway网关数)。
avaliable
是
String
无
剩余量,xx条(Connetion线路数),xx个(Gateway网关数)。
- 响应示例
HTTP/1.1 200 OK Date:Tue,18 Jul 2023 09:58:01 GMT Server: example.com Content-Type: application/json;charset=UTF8 { "total": 2, "list": [ { "service_type": "VPN", "total": "0", "available": "0", "metric_type": "connection", "zone_type": "VPN_POD", "used": "0", "free": "0", "used_ratio": "0", "region": "cn-east-264", "resource_count": "0", "allocated": "0", "timestamp": "1650211200000" }, { "service_type": "VPN", "total": "5", "available": "5", "metric_type": "gateway", "zone_type": "VPN_POD", "used": "0", "free": "0", "used_ratio": "0", "region": "cn-east-264", "resource_count": "0", "allocated": "0", "timestamp": "1650211200000" } ] }
状态码
状态码 |
说明 |
---|---|
200 |
操作成功。 |
400 |
参数错误。 |
401 |
token鉴权失败。 |
403 |
鉴权失败。 |
404 |
rest接口未找到。 |
500 |
默认ServiceException异常码,应用内部错误。 |