All Products
Search
Document Center

Data Management:ListDatabases

Last Updated:Jul 15, 2024

Queries the databases in a database instance.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TidlongNo

The ID of the tenant.

Note : To view the ID of the tenant, move the pointer over the profile picture in the upper-right corner of the Data Management (DMS) console. For more information, see Manage DMS tenants.
3***
InstanceIdstringYes

The ID of the instance. The valid value is returned if you call the ListInstances operation. The instance ID is not the ID of the RDS instance.

12***
PageNumberintegerYes

The number of the page to return.

1
PageSizeintegerNo

The number of entries to return per page.

10

Response parameters

ParameterTypeDescriptionExample
object
TotalCountlong

The number of databases that belong to an instance.

1
RequestIdstring

The ID of the request.

5541CDA6-F674-435C-81BD-40C2FB926CE3
DatabaseListarray<object>

The details of the databases.

object
DatabaseIdstring

The ID of the database.

1
Hoststring

The endpoint of the instance to which the database belongs.

xxx.xxx.xxx.xxx
CatalogNamestring

The name of the catalog to which the database belongs.

1
DbaNamestring

The nickname of the Database administrator (DBA) to which the database belongs.

dba_user
Statestring

The state of the database. Valid values:

  • NORMAL: The database is normal.
  • DISABLE: The database is disabled.
  • OFFLINE: The database is unpublished.
  • NOT_EXIST: The database does not exist.
NORMAL
DbaIdstring

The ID of the DBA.

1
SchemaNamestring

The name of the database.

test
InstanceIdstring

The ID of the instance to which the database belongs.

1
Portinteger

The connection port of the instance to which the database belongs.

3306
EnvTypestring

The type of the environment to which the database belongs.

dev
Sidstring

The system ID (SID) of the instance to which the database belongs.

test
OwnerIdListarray

The IDs of the owners of the database.

string

The ID of the owner of the database.

1
Encodingstring

The encoding format of the database.

utf-8
DbTypestring

The type of the database engine.

mysql
OwnerNameListarray

The nicknames of the database owners.

string

The nickname of the database owner.

owner_name
SearchNamestring

The name that is used for searching the database.

test@xxx.xxx.xxx.xxx:3306
ErrorCodestring

The error code returned if the request failed.

UnknownError
ErrorMessagestring

The error message returned if the request failed.

UnknownError
Successboolean

Indicates whether the request is successful.

true

Examples

Sample success responses

JSONformat

{
  "TotalCount": 1,
  "RequestId": "5541CDA6-F674-435C-81BD-40C2FB926CE3",
  "DatabaseList": {
    "Database": [
      {
        "DatabaseId": "1",
        "Host": "xxx.xxx.xxx.xxx",
        "CatalogName": "1",
        "DbaName": "dba_user",
        "State": "NORMAL",
        "DbaId": "1",
        "SchemaName": "test",
        "InstanceId": "1",
        "Port": 3306,
        "EnvType": "dev",
        "Sid": "test",
        "OwnerIdList": {
          "OwnerIds": [
            "1"
          ]
        },
        "Encoding": "utf-8",
        "DbType": "mysql",
        "OwnerNameList": {
          "OwnerNames": [
            "owner_name"
          ]
        },
        "SearchName": "test@xxx.xxx.xxx.xxx:3306"
      }
    ]
  },
  "ErrorCode": "UnknownError",
  "ErrorMessage": "UnknownError",
  "Success": true
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
No change history