查询伸缩活动列表
接口功能介绍
查询伸缩组的伸缩活动,并列出伸缩活动的全部信息
接口约束
无
URI
POST /v4/scaling/group/query-activities-list
路径参数
无
Query参数
无
请求参数
请求头header参数
无
请求体body参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
regionID | 是 | String | 资源池ID | 81f7728662dd11ec810800155d307d5b | |
groupID | 是 | Integer | 伸缩组ID | 472 | |
pageNo | 否 | Integer | 页码 | 5 | |
pageSize | 否 | Integer | 分页查询时设置的每页行数,取值范围:[1~100],默认值为10 | 10 |
响应参数
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 返回码:800表示成功,900表示失败 | 800 | |
errorCode | String | 业务细分码,为product.module.code三段式码 | Scaling.Group.NotFound | 错误码 |
message | String | 失败时的错误描述,一般为英文描述 | scaling group info not found | |
description | String | 失败时的错误描述,一般为中文描述 | 未找到弹性伸缩组信息 | |
returnObj | Object | 成功时返回的数据,参见表returnObj | returnObj |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
activeList | Array of Objects | 伸缩活动对象列表 | activeObj |
表 activeObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
ruleFailReason | String | 策略失败原因 | ||
afterCount | Integer | 活动后计数 | 1 | |
endTime | String | 结束时间 | 2022-10-09 14:40:32 | |
beforeCount | Integer | 活动前计数 | 0 | |
ruleID | String | 伸缩策略ID | ||
startTime | String | 开始时间 | 2022-10-09 14:40:32 | |
failReason | String | 失败原因 | ||
instanceList | Array of Objects | 虚机列表 | instanceList | |
executionMode | Integer | 执行方式。取值范围:1:自动执行策略。2:手动执行策略。3:手动移入实例。4:手动移出实例。5:新建伸缩组满足最小数。6:修改伸缩组满足最大最小限制。7:健康检查移入。8:健康检查移出。 | 5 | |
groupID | Integer | 伸缩组ID | 472 | |
ruleExpectDelta | Integer | 策略预期可变化数量 | 1 | |
executionResult | Integer | 执行结果取值范围:0:执行中1:成功2:失败 | 0 | |
executionDate | String | 执行时间 | ||
ruleExecutionResult | Integer | 策略执行结果 | 1 | |
activeID | Integer | 伸缩活动ID | 938 | |
ruleRealDelta | Integer | 策略实际可变化数量 | 1 | |
description | String | 说明 | 新建伸缩组满足最小数 |
表 instanceList
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
instanceID | String | 云主机ID | ||
instanceName | String | 云主机名称 |
请求示例
请求头header
无
请求体body
{
"regionID": "81f7728662dd11ec810800155d307d5b",
"groupID": 1640
}
响应示例
{
"returnObj": {
"activeList": [
{
"ruleFailReason": null,
"afterCount": 0,
"endTime": "2023-01-13 14:49:58",
"beforeCount": 0,
"ruleID": null,
"startTime": "2023-01-13 14:49:54",
"description": "手动移入实例失败",
"failReason": "实例已在其他伸缩组中",
"instanceList": [
{
"instanceID": "716ebea2-e95e-9c0d-83af-0924b444109c",
"instanceName": "as-config-yf-1a9eha2d"
}
],
"executionMode": 3,
"activeID": 3849,
"ruleExpectDelta": 0,
"executionResult": 2,
"executionDate": null,
"ruleExecutionResult": null,
"groupID": 1640,
"ruleRealDelta": 0
},
{
"ruleFailReason": null,
"afterCount": 0,
"endTime": "2023-01-13 14:25:38",
"beforeCount": 0,
"ruleID": null,
"startTime": "2023-01-13 14:25:38",
"description": "手动移入实例失败",
"failReason": "实例已在其他伸缩组中",
"instanceList": [
{
"instanceID": "46722c57-1a24-7ccd-8cd8-82a966a10de0",
"instanceName": "as-config-yf-1a9e3bp4"
}
],
"executionMode": 3,
"activeID": 3848,
"ruleExpectDelta": 0,
"executionResult": 2,
"executionDate": null,
"ruleExecutionResult": null,
"groupID": 1640,
"ruleRealDelta": 0
}
]
},
"errorCode": "",
"message": "SUCCESS",
"description": "成功",
"statusCode": 800
}
错误码
errorCode | 描述 |
---|---|
Scaling.Group.NotFound | 未找到弹性伸缩组信息 |