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