接口功能介绍
根据regionID查询用户配额
接口约束
保证输入的资源池id准确无误
URI
GET /v4/region/customerQuotas
路径参数
无
Query参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
regionID | 是 | String | 资源池ID | 81f7728662dd11ec810800155d307d5b |
请求参数
请求头header参数
无
请求体body参数
无
响应参数
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 返回状态码('800为成功,900为失败) ,默认值:800 | 800 | |
errorCode | String | 错误码,为product.module.code三段式码。为空表示成功。 | ||
message | String | 失败时的错误描述,一般为英文描述 | ||
description | String | 失败时的错误描述,一般为中文描述 | ||
returnObj | Object | 返回参数 | returnObj | |
error | String | 错误码,为product.module.code三段式码。请求成功时不返回该字段 | Unknown.Parameter.InvalidRegionID |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
quotas | Object | 配额信息 | quotas |
表 quotas
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
max_count_of_nic_per_vm | Integer | 单台虚机可添加网卡数量上限 | 14 | |
security_groups_limit | Integer | 安全组个数上限(资源池内) | 500 | |
nic_relate_security_group_limit | Integer | 网卡可绑定的安全组数量上限 | 100 | |
security_group_rules_limit | Integer | 安全组规则个数上限(资源池内) | 500 |
枚举参数
无
请求示例
请求url
/v4/region/customerQuotas?regionID=a4e1e8ca370a11ec9d650242ac11000a
请求头header
无
请求体body
响应示例
{
"returnObj": {
"quotas": {
"max_count_of_nic_per_vm": 5,
"security_groups_limit": 100,
"security_group_rules_limit": 500,
"nic_relate_security_group_limit": 10
}
},
"errorCode": "",
"message": "",
"description": "",
"statusCode": 800
}
状态码
请参考 状态码
错误码
请参考 错误码