All Products
Search
Document Center

ApsaraDB RDS:DescribeMetaList

Last Updated:Mar 22, 2024

Queries the information about the databases and tables that can be restored from a specified backup set.

Operation description

Supported database engines

MySQL

Note This operation is available for RDS instances that run MySQL 8.0, MySQL 5.7, and MySQL 5.6 on RDS High-availability Edition with local disks.

Description

Before you call the RestoreTable operation to restore individual databases or tables of an ApsaraDB RDS for MySQL instance, you can call this operation to query the information about the databases and tables that can be restored. For more information, see Restore individual databases and tables of an ApsaraDB RDS for MySQL instance.

Debugging

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

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
rds:DescribeMetaListREAD
  • DBInstance
    acs:rds:{#regionId}:{#accountId}:dbinstance/{#dbinstanceId}
  • rds:ResourceTag
none

Request parameters

ParameterTypeRequiredDescriptionExample
ClientTokenstringNo

The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the generated token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.

ETnLKlblzczshOTUbOCzxxxxxxxxxx
DBInstanceIdstringYes

The instance ID. You can call the DescribeDBInstances operation to query the instance ID.

rm-uf6wjk5xxxxxxx
RestoreTypestringNo

The method that is used to restore data. Valid values:

  • BackupSetID: Data is restored from a backup set. If you use this value, you must also specify the BackupSetID parameter.
  • RestoreTime: Data is restored to a specific point in time. If you use this value, you must also specify the RestoreTime parameter.

Default value: BackupSetID.

BackupSetID
BackupSetIDintegerNo

The ID of the backup set from which you want to restore data. You can call the DescribeBackups operation to query the backup set ID.

Note This parameter must be specified when the RestoreType parameter is set to BackupSetID.
14358
RestoreTimestringNo

The point in time to which you want to restore data. The specified point in time must be earlier than the current time. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. You can call the DescribeBackups operation to query the restorable time range.

Note This parameter must be specified when the RestoreType parameter is set to RestoreTime.
2019-05-30T03:29:10Z
GetDbNamestringNo

The name of the database to query. The system implements exact match based on the value of this parameter and returns the name of the matched database and the names of all tables contained in the database.

Note If you leave this parameter empty, the system returns all databases that are created on the instance.
testdb1
PatternstringNo

The name of the database to query. The system implements fuzzy match based on the value of this parameter and returns only the name of the matched database.

Note For example, if you set the value to test, the system returns testdb1 and testdb2. Then, you can specify the GetDbName parameter to query tables in the required database.
test
PageSizeintegerNo

The number of entries to return on each page. Default value: 1.

Note This parameter only takes effect when you specify the PageIndex parameter.
1
PageIndexintegerNo

The number of the page to return. Valid values: any non-zero positive integer.**** Default value: 1.

Note This parameter only takes effect when you specify the PageSize parameter.
1
ResourceGroupIdstringNo

The resource group ID.

rg-acfmy*****

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

DBInstanceNamestring

The instance name.

rm-uf6wjk5xxxxxxx
TotalPageCountinteger

The total number of pages returned.

1
RequestIdstring

The ID of the request.

60F9A12A-16B8-4728-B099-4CA38D32C31C
PageRecordCountinteger

The number of entries returned per page.

1
TotalRecordCountinteger

The total number of returned entries.

1
PageNumberinteger

The page number of the returned page.

1
Itemsobject []

The information about the databases and tables whose data is included in the backup set.

Tablesstring

The table name.

test1
Databasestring

The database name.

testdb1
Sizestring

The table size. Unit: KB.

64

Examples

Sample success responses

JSONformat

{
  "DBInstanceName": "rm-uf6wjk5xxxxxxx",
  "TotalPageCount": 1,
  "RequestId": "60F9A12A-16B8-4728-B099-4CA38D32C31C",
  "PageRecordCount": 1,
  "TotalRecordCount": 1,
  "PageNumber": 1,
  "Items": {
    "Meta": [
      {
        "Tables": "test1",
        "Database": "testdb1",
        "Size": "64"
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400NoAvailableDisasterRestoreBaksetNo available disaster restore bakset-
400InvalidPageSizeThe page size is invalidThe value of the pageSize parameter is invalid. The value of this parameter must be a number.
400InvalidPageIndexThe page index is invalid-
400InvalidRestoreTime.FormatSpecified restore time is not valid.The operation failed. The point in time is invalid. Specify a valid point in time.
403InvalidMeta.EmptyMeta information is empty.You must specify the metadata.
403InvalidMeta.TooLargeMeta information is too large.-
403IncorrectDBInstanceTypeCurrent DB instance type does not support this operation.The operation failed. The RDS instance is not in a ready state.
403IncorrectEngineVersionCurrent engine version does not support operations.The operation failed. The operation is not supported for the version of the database engine that is run on the RDS instance.
403InvalidBackupLogStatusCurrent backup log enable status does not support this operation.The operation failed. Log backups are not enabled, and therefore data cannot be restored to a specified point in time.
404InvalidBackupSetID.NotFoundSpecified backup set ID does not exist.The backup set does not exist. Specify an available backup set.
404InvalidParameters.FormatSpecified parameter({}) is not valid.-

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

Change history

Change timeSummary of changesOperation
2022-08-04The Error code has changed. The request parameters of the API has changedsee changesets
Change itemChange content
Error CodesThe Error code has changed.
    delete Error Codes: 400
    delete Error Codes: 403
    delete Error Codes: 404
Input ParametersThe request parameters of the API has changed.
    Added Input Parameters: ResourceGroupId