This API is used to obtain details about backups.
This API is used to query full backups of MySQL, PostgreSQL, and Microsoft SQL Server databases and incremental backups of MySQL and PostgreSQL databases.
GET https://{Endpoint}/v3/{project_id}/backups?instance_id={instance_id}&backup_id={backup_id}&backup_type={backup_type}&offset={offset}&limit={limit}&begin_time={begin _time}&end_time={end_time}
Name |
Mandatory |
Description |
---|---|---|
project_id |
Yes |
Specifies the project ID of a tenant in a region. For details about how to obtain the project ID, see Obtaining a Project ID. |
instance_id |
Yes |
Specifies the DB instance ID. |
backup_id |
No |
Specifies the backup ID. |
backup_type |
No |
Specifies the backup type. Value:
|
offset |
No |
Specifies the index position. If offset is set to N, the resource query starts from the N+1 piece of data. The value is 0 by default, indicating that the query starts from the first piece of data. The value must be a positive number. |
limit |
No |
Specifies the number of records to be queried. The default value is 100. The value cannot be a negative number. The minimum value is 1 and the maximum value is 100. |
begin_time |
No |
Specifies the start time for obtaining the backup list. The format of the start time is "yyyy-mm-ddThh:mm:ssZ". T is the separator between the calendar and the hourly notation of time. Z indicates the time zone offset. NOTE:
When begin_time is not empty, end_time is mandatory. |
end_time |
No |
Specifies the end time for obtaining the backup list. The format of the end time is "yyyy-mm-ddThh:mm:ssZ" and the end time must be later than the start time. T is the separator between the calendar and the hourly notation of time. Z indicates the time zone offset. NOTE:
When end_time is not empty, begin_time is mandatory. |
Name |
Type |
Description |
---|---|---|
backups |
Array of objects |
Indicates the backup list. For details, see Table 3. |
total_count |
Integer |
Indicates the total number of records. |
Name |
Type |
Description |
---|---|---|
id |
String |
Indicates the backup ID. |
name |
String |
Indicates the backup name. |
type |
String |
Indicates the backup type. Value:
|
size |
Long |
Indicates the backup size in kB. |
status |
String |
Indicates the backup status. Value:
|
begin_time |
String |
Indicates the backup start time in the "yyyy-mm-ddThh:mm:ssZ" format. T is the separator between the calendar and the hourly notation of time. Z indicates the time zone offset. |
end_time |
String |
Indicates the backup end time.
The format is yyyy-mm-ddThh:mm:ssZ. T is the separator between the calendar and the hourly notation of time. Z indicates the time zone offset. |
datastore |
Object |
Indicates the database version. For details, see Table 4. |
databases |
Array of objects |
Indicates a list of self-built Microsoft SQL Server databases that support partial backups. For details, see Table 5. |
instance_id |
String |
Indicates the ID of the DB instance for which the backup is created. |
Obtaining a backup list of a MySQL DB instance:
{ "backups": [{ "id": "43e4feaab48f11e89039fa163ebaa7e4br01", "name": "xxxx.xxx", "type": "auto", "size": 2803, "status": "COMPLETED", "begin_time": "2018-08-06T12:41:14+0800", "end_time": "2018-08-06T12:43:14+0800", "datastore": { "type": "MySQL", "version": "8.0" }, "instance_id": "a48e43ff268f4c0e879652d65e63d0fbin01" }], "total_count": 1 }
Obtaining a backup list of a PostgreSQL DB instance:
{ "backups": [{ "id": "43e4feaab48f11e89039fa163ebaa7e4br03", "name": "xxxx.xxx", "type": "incremental", "size": 2803, "status": "COMPLETED", "begin_time": "2018 - 08 - 06 T12: 41: 14 + 0800", "end_time": "2018 - 08 - 06 T12: 43: 14 + 0800", "datastore": { "type": "PostgreSQL", "version": "13" }, "instance_id": "a48e43ff268f4c0e879652d65e63d0fbin03 " }], "total_count": 1 }
Obtaining a backup list of a Microsoft SQL Server DB instance:
{ "backups": [{ "id ": "43e4feaab48f11e89039fa163ebaa7e4br04", "name": "xxxx.xxx", "type": "manual", "size": 2803, "status": "COMPLETED", "begin_time": "2018-08-06T12:41:14+0800", "end_time": "2018-08-06T12:43:14+0800", "datastore": { "type": "SQLServer", "version": "2017_SE" }, "databases": [{ "name": "user01" }, { "name": "user02" }], "instance_id": "a48e43ff268f4c0e879652d65e63d0fbin04" }], "total_count": 1 }
For details, see Abnormal Request Results.
For details, see Status Codes.
For details, see Error Codes.