创建一个周期策略
接口功能介绍
在伸缩组中创建一个周期策略
接口约束
无
URI
POST /v4/scaling/rule/create-cycle
路径参数
无
Query参数
无
请求参数
请求头header参数
无
请求体body参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
regionID | 是 | String | 资源池ID | 81f7728662dd11ec810800155d307d5 | |
groupID | 是 | Integer | 伸缩组ID | 471 | |
name | 是 | String | 伸缩策略名称,请注意不能与当前伸缩组内的其他策略冲突 | as-policy-xudcdcfccd | |
cycle | 是 | Integer | 循环方式,取值范围:1:按月循环。2:按周循环。3:按天循环。 | 3 | |
day | 是 | Array of Integers | 执行日期,当cycle为1时必填,且Array元素限制为[1-31]中的整数且不重复;当cycle为2时必填,且Array元素限制为[1-7]中的整数且不重复; | [1,3,5] | |
executionTime | 是 | String | 执行时间,需晚于当前时间 | 2022-10-17 10:44:00 | |
effectiveFrom | 是 | String | 执行有效期起始时间,需晚于当前时间 | 2022-10-17 10:44:00 | |
effectiveTill | 是 | String | 执行有效期截止时间,需晚于有效期起始时间 | 2022-11-16 11:44:00 | |
action | 是 | Integer | 执行动作。取值范围:1:增加2:减少3:设置为 | 1 | |
operateUnit | 是 | Integer | 操作单位。 取值范围:1:个数。2:百分比。 | 1 | |
operateCount | 是 | Integer | 调整值 | 1 |
响应参数
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 返回码:800表示成功,900表示失败 | 800 | |
errorCode | String | 业务细分码,为product.module.code三段式码 | Scaling.Group.RuleNameConflict | 错误码 |
message | String | 失败时的错误描述,一般为英文描述 | the name of scaling rule conflicts | |
description | String | 失败时的错误描述,一般为中文描述 | 伸缩策略名称冲突 | |
returnObj | Object | 成功时返回的数据,参见表returnObj | returnObj |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
ruleID | Integer | 伸缩策略ID | 149 |
请求示例
请求头header
无
请求体body
按月循环
{
"regionID": "81f7728662dd11ec810800155d307d5b",
"groupID": 494,
"name": "as-policy-4321",
"cycle": 1,
"day": [1],
"executionTime": "2022-10-17 10:44:00",
"effectiveFrom": "2022-10-17 10:44:00",
"effectiveTill": "2022-11-16 11:44:00",
"action": 1,
"operateUnit": 1,
"operateCount": 1
}
按周循环
{
"regionID": "81f7728662dd11ec810800155d307d5b",
"groupID": 494,
"name": "as-policy-4321",
"cycle": 2,
"day": [1],
"executionTime": "2022-10-17 10:44:00",
"effectiveFrom": "2022-10-17 10:44:00",
"effectiveTill": "2022-11-16 11:44:00",
"action": 1,
"operateUnit": 1,
"operateCount": 1
}
按天循环
{
"regionID": "81f7728662dd11ec810800155d307d5b",
"groupID": 494,
"name": "as-policy-4321",
"cycle": 3,
"executionTime": "2022-10-17 10:44:00",
"effectiveFrom": "2022-10-17 10:44:00",
"effectiveTill": "2022-11-16 11:44:00",
"action": 1,
"operateUnit": 1,
"operateCount": 1
}
响应示例
{
"returnObj": {
"ruleID": 197
},
"errorCode": "",
"message": "SUCCESS",
"description": "成功",
"statusCode": 800
}
错误码
errorCode | 描述 |
---|---|
Scaling.Rule.RuleNumberMoreThanLimit | 伸缩组中的伸缩策略数量超过限制 |
Scaling.Rule.RuleNameConflict | 弹性伸缩策略名称冲突 |
Scaling.Rule.ParamsError | 弹性伸缩策略参数错误 |
Scaling.Rule.DayRequired | 弹性伸缩策略参数day必填 |