Managed Service for MySQL API, gRPC: ClusterService.ListBackups
Retrieves a list of backups for a cluster.
To list all backups in a folder, make a BackupService.List request.
gRPC request
rpc ListBackups (ListClusterBackupsRequest) returns (ListClusterBackupsResponse)
ListClusterBackupsRequest
{
"cluster_id": "string",
"page_size": "int64",
"page_token": "string"
}
Field |
Description |
cluster_id |
string Required field. ID of the cluster to list backups for. To get this ID, make a ClusterService.List request. |
page_size |
int64 The maximum number of results per page to return. If the number of available results is larger than |
page_token |
string Page token that can be used to iterate through multiple pages of results. To get the next page of results, set |
ListClusterBackupsResponse
{
"backups": [
{
"id": "string",
"folder_id": "string",
"created_at": "google.protobuf.Timestamp",
"source_cluster_id": "string",
"started_at": "google.protobuf.Timestamp",
"size": "int64",
"type": "BackupCreationType",
"status": "BackupStatus"
}
],
"next_page_token": "string"
}
Field |
Description |
backups[] |
List of the cluster backups. |
next_page_token |
string The token that can be used to get the next page of results. If the number of results is larger than ListClusterBackupsRequest.page_size, use the Each of the subsequent ClusterService.ListBackups 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. |
folder_id |
string ID of the folder that the backup belongs to. |
created_at |
Creation timestamp (the time when the backup operation was completed). |
source_cluster_id |
string ID of the cluster that the backup was created for. |
started_at |
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
|