查看自动续费
更新时间:2023-06-28
接口描述
本接口用于查看BES集群自动续费情况
API调用地址
POST /api/bes/cluster/auto_renew_rule/detail
请求参数
Header 参数
参数名称 | 参数类型 | 是否必填 | 描述 | 示例值 |
---|---|---|---|---|
x-Region | String | 是 | 区域 | bd |
Body 参数
参数名称 | 参数类型 | 是否必填 | 描述 | 示例值 |
---|---|---|---|---|
clusterId | String | 是 | 集群ID,超过规定18位会返回500错误 | 443755843180171264 |
示例
POST /api/bes/cluster/auto_renew_rule/detail
x-Region: bd
{
"clusterId" : "443755843180171264"
}
响应参数
响应体字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
result | 返回的结果说明 | ||
success | Boolean | 操作是否成功 | true |
status | BigDecimal | 状态码 | 200 |
result字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
clusterId | String | 集群ID | 573343274681634816 |
renewTimeUnit | String | 续费时间单位 支持month,year | month |
renewTime | Integer | 续费时长 | 1 |
expireTime | BigDecimal | 自动续费时间 | 1658216735000 |
nextRenewTime | BigDecimal | 修改时间 | 1658216735000 |
示例
HTTP/1.1 200 OK
{
"result" : {
"renewTime" : 1,
"expireTime" : 1658216735000,
"renewTimeUnit" : "month",
"clusterId" : "573343274681634816",
"nextRenewTime" : 1658216735000
},
"success" : true,
"status" : 200
}