查询弹性公网IP配额
最近更新时间: 2024-10-17 17:10:00
1. 接口描述
域名: eip.api.qcloud.com 接口名: DescribeEipQuota
查询指定地域弹性公网IP配额。
2. 输入参数
参数名称 | 必选 | 类型 | 描述 |
---|---|---|---|
空 | - | - | - |
3. 输出参数
参数名称 | 类型 | 描述 |
---|---|---|
code | Int | 公共错误码。0表示成功,其他值表示失败。详见公共错误码。 |
message | String | 模块错误信息描述,与接口相关。详见公共错误码。 |
data | Array | 返回的数据结构 |
Data结构
参数名称 | 类型 | 描述 |
---|---|---|
data.eipNumQuota | Int | 能申请EIP个数的总配额 |
data.currentEipNum | Int | 当前EIP个数 |
data.dailyApplyQuota | Int | 日申请EIP的次数限制 |
data.dailyApplyCount | Int | 当天申请EIP次数 |
data.dailyAllocWanIpQuota | Int | 日解绑EIP时重新分配普通公网IP的次数限制 |
data.dailyAllocWanIpCount | Int | 当天解绑EIP并重新分配普通公网IP次数 |
4. 示例
输入
https://eip.api.qcloud.com/v2/index.php? &<公共请求参数>
输出
{
"code": 0,
"message": "",
"data": {
"eipNumQuota": 20,
"currentEipNum": 2,
"dailyApplyQuota": 10,
"dailyApplyCount": 7,
"dailyAllocWanIpQuota": 10,
"dailyAllocWanIpCount": 2
}
}