Method list
Retrieves the list of backups available for the specified folder.
HTTP request
GET https://mdb.api.cloud.yandex.net/managed-mongodb/v1/backups
Query parameters
Parameter | Description |
---|---|
folderId | Required. ID of the folder to list backups in. To get the folder ID, use a list request. The maximum string length in characters is 50. |
pageSize | The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request. The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"backups": [
{
"id": "string",
"folderId": "string",
"createdAt": "string",
"sourceClusterId": "string",
"startedAt": "string",
"sourceShardNames": [
"string"
],
"size": "string",
"type": "string"
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
backups[] | object A MongoDB Backup resource. For more information, see the Developer's Guide. |
backups[]. id |
string ID of the backup. |
backups[]. folderId |
string ID of the folder that the backup belongs to. |
backups[]. createdAt |
string (date-time) Creation timestamp in RFC3339 text format (i.e. when the backup operation was completed). String in RFC3339 text format. |
backups[]. sourceClusterId |
string ID of the MongoDB cluster that the backup was created for. |
backups[]. startedAt |
string (date-time) Time when the backup operation was started. String in RFC3339 text format. |
backups[]. sourceShardNames[] |
string Shard names used as a source for backup. |
backups[]. size |
string (int64) Size of backup in bytes |
backups[]. type |
string How this backup was created (manual/automatic/etc...)
|
nextPageToken | string This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results. |