查询参数模板更新历史
更新时间:2023-09-22
接口描述
本接口用于查询参数模板更新历史。
请求结构
GET /v{version}/gaiadb/paramTemplate/{uuid}/history?action=deleteParam HTTP/1.1
HOST: gaiadb.bj.baidubce.com
Content-Type: application/json
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API 版本号 |
uuid | String | 是 | URL参数 | 参数模板 ID |
action | String | 否 | URL参数 | 更新操作类型,取值:addParam、updateParam、delParam |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
records | Array<Record> | 更新记录 |
Record
参数名称 | 类型 | 描述 |
---|---|---|
action | String | 更新操作类型 |
name | String | 参数名称 |
afterValue | String | 参数更新后的值 |
errMsg | String | 更新失败时的错误信息 |
startTime | String | 更新开始时间 |
finishTime | String | 更新结束时间 |
请求示例
PUT /v1/gaiadb/paramTemplate/0cf1a-58e1-4a84-0ade-bbe6/history?action=addParam 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": [
{
"action": "addParam",
"name": "auto_increment_increment",
"paramTemplateId": "0cfd901a-58e1-4a84-0ade-bb192a9954e6",
"requestId": "ab56bcc1-56f8-47fc-9190-4433ff2e497f",
"id": 1235,
"errMsg": "",
"afterValue": "1",
"startTime": "2022-12-29 20:00:57",
"finishTime": "2022-12-29 20:00:57"
}
]
}