Domain name for API request: ctsdb.intl.tencentcloudapi.com.
This API is used to query the database list.
"Database":{
"ClusterID":"ctsdbi-rebg0ghl",
"Name":"" //This API is used to query all databases under the instance if the parameter is not specified.
}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: DescribeDatabases. |
| Version | Yes | String | Common Params. The value used for this API: 2023-02-02. |
| Region | Yes | String | Common Params. For more information, please see the list of regions supported by the product. |
| Database | Yes | Database | Database parameter. |
| PageSize | No | Integer | Pagination size. |
| PageNumber | No | Integer | Pagination page. |
| Parameter Name | Type | Description |
|---|---|---|
| Databases | Array of Database | Database list. |
| TotalCount | Integer | Quantity. |
| 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. |
This example shows you how to query the database list.
POST / HTTP/1.1
Host: ctsdb.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeDatabases
<Common request parameters>
{
"Database": {
"ClusterID": "ctsdbi-xxxxxxx",
"Name": "Test",
"CoolDownInDays": 0,
"RetentionInDays": 0,
"Remark": "",
"Status": 0,
"CreatedAt": "2020-09-22T00:00:00+00:00",
"UpdatedAt": "2020-09-22T00:00:00+00:00"
},
"PageSize": 10,
"PageNumber": 1
}{
"Response": {
"Databases": [
{
"ClusterID": "ctsdbi-xxxxxxx",
"Name": "testData",
"CoolDownInDays": 0,
"RetentionInDays": 0,
"Remark": "test",
"Status": 0,
"CreatedAt": "2020-09-22T00:00:00+00:00",
"UpdatedAt": "2020-09-22T00:00:00+00:00"
}
],
"TotalCount": 0,
"RequestId": "requestxxxxxxxxx"
}
}
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 |
|---|---|
| AuthFailure | CAM signature/authentication error. |
| ResourceNotFound | The resource does not exist. |
Feedback