公网IP续费
描述
针对试用或包年包月的公网IP进行续费,试用状态下续费则资源付费类型自动转为包年包月。
请求参数
参数名 | 参数类型 | 是否必填 | 参数说明 |
---|---|---|---|
Action | String | 是 | 操作方法,RenewEips |
Region | String | 是 | 机房标识,取值参见地域列表 |
Eip.N | String | 是 | 公网IP地址,支持批量,N为自然数,格式:&Eip.0=xxx0&Eip.1=xxx1 |
PayType | String | 否 | 付费类型,取值: |
Period | Integer | 是 | 续费时长: |
返回参数
名称 | 类型 | 说明 |
---|---|---|
Action | String | 执行的操作 |
TaskId | String | 请求标识 |
Eips | EipItemType | 由EipItemType组成的数组格式,返回公网IP列表 |
EipItemType
公网IP列表的数据类型
名称 | 类型 | 说明 |
---|---|---|
IpAddress | String | 公网IP地址 |
Id | String | 公网IP标识 |
DueTime | Date | 过期时间 |
请求示例
https://api.chinac.com/v2/?Action=RenewEips
&Region=cn-wuxi1
&Eip.0=172.16.24.50
&Period=2
&<公共请求参数>
返回示例
{
"code": 10000,
"message": "",
"data": {
"TaskId": "bb112c20170506133720502",
"Action": "RenewEips",
"Eips" :[{
"IpAddress":"172.16.24.50",
"Id":"eip-sdsdd",
"DueTime":"2017-05-19T19:09:01 +0800"
}]
}
}