创建自动续费规则
更新时间:2023-06-28
接口描述
本接口用于创建BES集群自动续费规则
API调用地址
POST /api/bes/cluster/auto_renew_rule/create
请求参数
Header 参数
参数名称 | 参数类型 | 是否必填 | 描述 | 示例值 |
---|---|---|---|---|
x-Region | String | 是 | 区域 | bd |
Body 参数
参数名称 | 参数类型 | 是否必填 | 描述 | 示例值 |
---|---|---|---|---|
clusterId | String | 是 | 集群ID | 218185657699405824 |
userId | String | 是 | 用户ID | 1533e5865a0047ffa61b4568f3fcebab |
region | String | 是 | 区域 | bd |
renewTimeUnit | String | 是 | 续费时间单位 支持month,year | month |
renewTime | Integer | 是 | 续费时长 | 1 |
serviceType | String | 是 | 服务类型 | bes |
示例
POST /api/bes/cluster/auto_renew_rule/create
x-Region: bd
{
"serviceType" : "bes",
"renewTime" : 1,
"renewTimeUnit" : "month",
"clusterIds" : [ "443755843180171264" ],
"region" : "bd",
"userId" : "1533e5865a0047ffa61b4568f3fcebab"
}
响应参数
响应体字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
result | 返回的结果说明 | ||
success | Boolean | 操作是否成功 | true |
status | BigDecimal | 状态码 | 200 |
result字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
orderId | String | 订单ID | 186f2566f2884534a65ed8cdc2499d82 |
示例
HTTP/1.1 200 OK
<公共响应头>
{
"result" : {
"orderId" : "186f2566f2884534a65ed8cdc2499d82"
},
"success" : true,
"status" : 200
}