查询参数更新历史
更新时间:2023-09-22
接口描述
本接口用于查询参数列表。
请求结构
GET /v{version}/gaiadb/cluster/{clusterId}/compute/params/history HTTP/1.1
HOST: gaiadb.bj.baidubce.com
Content-Type: application/json
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号 |
clusterId | String | 是 | URL参数 | 集群ID |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
records | Array<Record> | 参数列表 |
Param
参数名称 | 类型 | 描述 |
---|---|---|
id | Long | 更新ID |
taskId | Long | 更新任务ID |
name | String | 参数名 |
beforeValue | String | 变更前参数值 |
afterValue | String | 变更后参数值 |
startTime | String | 变更开始时间 |
finishTime | String | 变更结束时间 |
status | String | 变更状态 |
请求示例
GET /v1/gaiadb/cluster/gaiadbxxxx8/compute/params/history HTTP/1.1
HOST: gaiadb.bj.baidubce.com
Content-Type: application/json
Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2017-11-21T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 7869616F-7A68-6977-656E-406261696475
Content-Type: application/json
Content-Length: 0
{
"records": [
{
"status": "success",
"finishTime": "2023-09-14 15:37:44",
"name": "auto_increment_increment",
"startTime": "2023-09-14 15:37:31",
"afterValue": "35",
"beforeValue": "25",
"taskId": 3780370,
"id": 38492
}
]
}