Restores a database.
Operation Description
You can call this operation to restore databases to a new instance or an existing instance. If you want to restore databases to an existing instance, we recommend that you call the Copy databases operation.
If you want to restore databases to a new instance, you must create an instance and then restore specific or all databases to the new instance.
- If you specify the name of a database, only the specified database is restored to the new instance.
- If you do not specify the name of a database, all databases are restored to the new instance.
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.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
rds:RecoveryDBInstance | WRITE |
|
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
DBInstanceClass | string | No | The instance type of the new instance. For more information, see Instance types. | rds.mysql.s2.large |
DBInstanceStorage | integer | No | The storage capacity of the new instance. Unit: GB. For more information, see Instance types. | 5 |
PayType | string | No | The billing method of the new instance. Valid values:
| Postpaid |
InstanceNetworkType | string | No | The network type of the new instance. Valid values:
By default, the new instance uses the same network type as the original instance. | VPC |
DBInstanceId | string | No | The ID of the original instance. Note
| rm-xxxxxxxx1 |
TargetDBInstanceId | string | No | The ID of the destination instance. | rm-uf6wjk5xxxxxxx |
DbNames | string | Yes | The name of the database.
| Restore databases to a new instance: test1,test2. Restore databases to an existing instance: {"test1":"newtest1","test2":"newtest2"} |
BackupId | string | No | The ID of the backup set. You can call the DescribeBackups operation to query the ID of the backup set. If you specify this parameter, you do not need to specify DBInstanceId. NoteYou must specify at least one of BackupId and RestoreTime. | 29304**** |
RestoreTime | string | No | The point in time to which you want to restore data. The point in time must fall within the specified log backup retention period. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If you specify this parameter, you must also specify DBInstanceId. NoteYou must specify at least one of BackupId and RestoreTime. | 2011-06-11T16:00:00Z |
VPCId | string | No | The VPC ID of the new instance. | vpc-xxxxxxxxxxx |
VSwitchId | string | No | The vSwitch ID of the new instance. If you specify more than one vSwitch ID, you must separate the IDs with commas (,). | vsw-xxxxxxxxxxx |
PrivateIpAddress | string | No | The internal IP address of the new instance. The internal IP address must be within the CIDR block that is supported by the specified vSwitch. The system automatically assigns a private IP address to an instance based on the values of VPCId and VSwitchId. | 172.XXX.XXX.69 |
UsedTime | string | No | The subscription duration of the instance. Valid values:
NoteThis parameter must be specified when PayType is set to Prepaid. | 1 |
Period | string | No | The unit that is used to calculate the billing cycle of the new instance. This parameter takes effect only when you select the subscription billing method for the new instance. Valid values:
NoteThis parameter must be specified when PayType is set to Prepaid. | Month |
DBInstanceStorageType | string | No | The storage type of the new instance. Valid values:
| local_ssd |
Response parameters
Examples
Sample success responses
JSON
format
{
"DBInstanceId": "rm-xxxxxxx",
"RequestId": "EFB6083A-7699-489B-8278-C0CB4793A96E",
"OrderId": "54325****"
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
400 | IllegalParameter | illegal parameter, param is empty. | The values of some parameters are invalid. |
400 | InvalidRecoveryDbInstance.StorageSize | The disk space of the new instance cannot be less than that of the current instance | The operation failed. The available storage space of the new RDS instance must be greater than or equal to the total size of data stored in the original RDS instance. |
400 | DBCountLimitExceeded | Db count limit exceeded. | The number of databases is exceeded. |
403 | Forbidden.SnapshotRecovery | Snapshot backup does not support partial restore | The operation failed. Snapshot backup files cannot be used to restore only a specific part of data. |
For a list of error codes, visit the Service error codes.