Domain name for API request: cdb.intl.tencentcloudapi.com.
This API is used to query the rollback task detail of a cloud database instance.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| Action | Yes | String | Common Params. The value used for this API: DescribeRollbackTaskDetail. |
| Version | Yes | String | Common Params. The value used for this API: 2017-03-20. |
| Region | Yes | String | Common Params. For more information, please see the list of regions supported by the product. |
| InstanceId | Yes | String | Instance ID, which is the same as the instance ID displayed in the TencentDB Console. You can use the DescribeDBInstances API to query the ID. |
| AsyncRequestId | No | String | Async task ID. |
| Limit | No | Integer | Pagination parameter. Number of records returned per request. Default value: 20. Maximum value: 100 is recommended. |
| Offset | No | Integer | Pagination offset. Default value: 0. |
| Parameter Name | Type | Description |
|---|---|---|
| TotalCount | Integer | Number of eligible entries. |
| Items | Array of RollbackTask | Rollback task details. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
POST / HTTP/1.1
Host: cdb.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeRollbackTaskDetail
<Common request parameters>
{
"InstanceId": "cdb-qwer1234",
"Limit": 1
}
{
"Response": {
"TotalCount": 2,
"Items": [
{
"Info": "batch rollback success",
"Status": "SUCCESS",
"Progress": 100,
"StartTime": "2020-04-22 10:01:23",
"EndTime": "2020-04-22 10:06:25",
"Detail": [
{
"InstanceId": "cdb-qwer1234",
"Strategy": "full",
"RollbackTime": "2020-04-22 10:00:57",
"Databases": [],
"Tables": [
{
"Table": [
{
"TableName": "sbtest1",
"NewTableName": "sbtest1_bak"
},
{
"TableName": "sbtest2",
"NewTableName": "sbtest2_bak"
}
],
"Database": "dbtest_bak"
}
]
}
]
}
],
"RequestId": "1ac120c8-744a-4c15-be4e-4431511c0233"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
| Error Code | Description |
|---|---|
| CdbError.DatabaseError | Backend database error. |
| InternalError.CdbError | System error. |
| InvalidParameter.ResourceNotExists | The resource does not exist. |
| OperationDenied.UserHasNoStrategy | This account is not authorized to access the requested resource. |
피드백