Queries the backup sets of an ApsaraDB for MongoDB instance.
Authorization information
The following table is the authorization information corresponding to the API, which can be found in the RAM permission policy statement.Action
Used in the element to grant the RAM user or RAM role permission to call this API. The specific instructions are as follows:
- 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 keyword: refers to the condition keyword defined by the cloud product itself.
- 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.
Operate | access level | Resource type | conditional keyword | Association operation |
---|---|---|---|---|
dds:DescribeBackups | READ |
|
|
without |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
DBInstanceId | string | Yes |
The ID of the instance.
Note
If you set this parameter to the ID of a sharded cluster instance, you must also specify the NodeId parameter.
|
dds-bp1a7009eb24**** |
NodeId | string | No |
The ID of the shard node in the sharded cluster instance.
Note
This parameter is valid only when DBInstanceId is set to the ID of a sharded cluster instance.
|
d-bp128a003436**** |
BackupId | string | No |
The ID of the backup set. You can call the CreateBackup operation to obtain the value of this parameter. If you set the DBInstanceId parameter to the ID of a sharded cluster instance, the number of backup IDs is the same as the number of shards. Multiple , with commas (,) in the middle. |
2072****,2072****,2072**** |
PageNumber | integer | No |
The number of the page to return. The value must be an integer that is greater than 0. Default value: 1. |
1 |
PageSize | integer | No |
The number of entries to return on each page. Valid values: 30, 50, and 100. Default value: 30. |
30 |
StartTime | string | No |
The beginning of the time range to query. Specify the time in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC. |
2022-01-13T13:00Z |
EndTime | string | No |
The end of the time range to query. Specify the time in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC. |
2022-01-14T13:00Z |
Response parameters
Example
Normal return example
JSON
Format
{
"TotalCount": 1,
"RequestId": "275D43C3-F12F-5224-B375-0C6BF453BD56",
"PageSize": 30,
"PageNumber": 1,
"Backups": {
"Backup": [
{
"BackupStatus": "Success",
"BackupType": "FullBackup",
"BackupStartTime": "2022-01-14T03:56:17Z",
"BackupIntranetDownloadURL": "http://rdsbak-hz-v3.oss-cn-hangzhou-internal.aliyuncs.com/custins5559*****/hins1936****_data_2022052504****_qp.xb?Expires=165361****&OSSAccessKeyId=LTAI4G2wxd32KLGARfi****&Signature=lkFPjOY%2F8adB18vnOCbtmT7ii****&Region=cn-hangzhou",
"BackupSize": 6168576,
"BackupDownloadURL": "http://rdsbak-hz-v3.oss-cn-hangzhou.aliyuncs.com/custins5559****/hins1936****_data_2022052504****_qp.xb?Expires=165361****&OSSAccessKeyId=LTAI4G2wxd32KLGARf****&Signature=lkFPjOY%2F8adB18vnOCbtmT7****&Region=cn-hangzhou",
"BackupMode": "Automated",
"BackupEndTime": "2022-01-14T03:57:34Z",
"BackupId": 0,
"BackupDBNames": "database",
"BackupMethod": "Physical"
}
]
}
}
Error codes
Http code | Error code | Error message |
---|---|---|
400 | InvalidStartTime.Malformed | The Specified parameter StartTime is not valid. |
400 | InvalidEndTime.Malformed | The Specified parameter EndTime is not valid. |
400 | InvalidStartTimeAndEndTime.Malformed | The Specified parameter StartTime or EndTime is not valid. |
400 | InvalidPageSize.Malformed | The specified parameter PageSize is not valid. |
For a list of error codes, visit the API error center.