Managed Service for MySQL API, REST: Backup.Get
Retrieves information about the specified backup.
HTTP request
GET https://mdb.api.cloud.yandex.net/managed-mysql/v1/backups/{backupId}
Path parameters
Field |
Description |
backupId |
string Required field. ID of the backup to return information about. To get this ID, make a BackupService.List request (lists all backups in a folder) or a ClusterService.ListBackups request (lists all backups for an existing cluster). |
Response
HTTP Code: 200 - OK
{
"id": "string",
"folderId": "string",
"createdAt": "string",
"sourceClusterId": "string",
"startedAt": "string",
"size": "string",
"type": "string",
"status": "string"
}
An object that represents MySQL backup.
See the documentation for details.
Field |
Description |
id |
string Required field. ID of the backup. |
folderId |
string ID of the folder that the backup belongs to. |
createdAt |
string (date-time) Creation timestamp (the time when the backup operation was completed). String in RFC3339 To work with values in this field, use the APIs described in the |
sourceClusterId |
string ID of the cluster that the backup was created for. |
startedAt |
string (date-time) Start timestamp (the time when the backup operation was started). String in RFC3339 To work with values in this field, use the APIs described in the |
size |
string (int64) Size of backup, in bytes |
type |
enum (BackupCreationType) How this backup was created (manual/automatic/etc...)
|
status |
enum (BackupStatus) Status of backup
|