Managed Service for MySQL API, gRPC: BackupService.List
Retrieves the list of backups in a folder.
To list backups for an existing cluster, make a ClusterService.ListBackups request.
gRPC request
rpc List (ListBackupsRequest) returns (ListBackupsResponse)
ListBackupsRequest
{
"folderId": "string",
"pageSize": "int64",
"pageToken": "string"
}
Field |
Description |
folderId |
string Required field. ID of the folder to list backups in. To get this ID, make a yandex.cloud.resourcemanager.v1.FolderService.List request. |
pageSize |
int64 The maximum number of results per page to return. If the number of available results is larger than |
pageToken |
string Page token that can be used to iterate through multiple pages of results. To get the next page of results, set |
ListBackupsResponse
{
"backups": [
{
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"sourceClusterId": "string",
"startedAt": "google.protobuf.Timestamp",
"size": "int64",
"type": "BackupCreationType",
"status": "BackupStatus"
}
],
"nextPageToken": "string"
}
Field |
Description |
backups[] |
List of backups. |
nextPageToken |
string The token that can be used to get the next page of results. If the number of results is larger than ListBackupsRequest.pageSize, use the Each of the subsequent BackupService.List requests should use the |
Backup
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 |
Creation timestamp (the time when the backup operation was completed). |
sourceClusterId |
string ID of the cluster that the backup was created for. |
startedAt |
Start timestamp (the time when the backup operation was started). |
size |
int64 Size of backup, in bytes |
type |
enum BackupCreationType How this backup was created (manual/automatic/etc...)
|
status |
enum BackupStatus Status of backup
|