查询周期策略信息列表
接口功能介绍
查询周期策略信息列表
接口约束
无
URI
POST /v4/scaling/rule/query-cycle
路径参数
无
Query参数
无
请求参数
请求头header参数
无
请求体body参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
regionID | 是 | String | 资源池ID | 81f7728662dd11ec810800155d307d5 | |
groupID | 是 | Integer | 伸缩组ID | 471 |
响应参数
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 返回码:800表示成功,900表示失败 | 800 | |
errorCode | String | 业务细分码,为product.module.code三段式码 | Scaling.Rule.NotFound | 错误码 |
message | String | 失败时的错误描述,一般为英文描述 | scaling rule info not found | |
description | String | 失败时的错误描述,一般为中文描述 | 未找到弹性伸缩策略信息 | |
returnObj | Object | 成功时返回的数据,参见表returnObj | returnObj |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
cycles | Array of Objects | 周期策略列表信息 | list |
表 ruleObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
ruleID | Integer | 伸缩策略ID | 72 | |
name | String | 伸缩策略名称 | as-policy-5a5c | |
status | Integer | 启用状态。取值范围:1:启用。2:停用 | 1 | |
action | Integer | 执行动作。取值范围:1:增加2:减少3:设置为 | 1 | |
operateCount | Integer | 调整值 | 1 | |
operateUnit | Integer | 操作单位。 取值范围:1:个数。2:百分比。 | 1 | |
executionTime | String | 触发时间 | 2022-10-08 22:25:55 | |
cycle | Integer | 循环方式,取值范围:1:按月循环。2:按周循环。3:按天循环。 | 1 | |
effectiveFrom | String | 周期策略生效开始时间 | 2022-10-08 22:25:55 | |
effectiveTill | String | 周期策略生效截止时间 | 2022-10-08 22:25:55 | |
day | Array of Strings | 执行日期 | ['1','2'] | |
createDate | String | 创建时间 | 2022-10-08 22:25:55 | |
updateDate | String | 更新时间 | 2022-10-08 22:25:55 |
请求示例
请求头header
无
请求体body
{
"regionID": "81f7728662dd11ec810800155d307d5b",
"groupID": 471
}
响应示例
{
"returnObj": {
"cycles": [
{
"status": 1,
"createDate": "2022-10-08 22:25:55",
"name": "as-policy-5a5c",
"effectiveTill": "2022-10-08 22:25:55",
"executionTime": "2022-10-08 22:25:55",
"operateUnit": 1,
"ruleID": 72,
"operateCount": 1,
"action": 1,
"effectiveFrom": "2022-10-08 22:25:55",
"updateDate": "2022-10-08 22:25:55",
"day": ["1", "15", "20"],
"cycle": 1
}
]
},
"errorCode": "",
"message": "SUCCESS",
"description": "成功",
"statusCode": 800
}
错误码
errorCode | 描述 |
---|---|
Scaling.Group.NotFound | 未找到弹性伸缩组信息 |
Scaling.Parameter.InvalidError | 请求参数错误 |