BackupsΒΆ

class troveclient.v1.backups.Backup(manager, info, loaded=False)

Bases: troveclient.base.Resource

Backup is a resource used to hold backup information.

class troveclient.v1.backups.Backups(api)

Bases: troveclient.base.ManagerWithFind

Manage Backups information.

create(name, instance=None, description=None, parent_id=None, backup=None)

Create a new backup from the given instance.

delete(backup_id)

Delete the specified backup.

Parameters:backup_id – The backup id to delete
get(backup)

Get a specific backup.

Return type:Backups
list(limit=None, marker=None, datastore=None)

Get a list of all backups.

Return type:list of Backups.
resource_class

alias of Backup

Previous topic

Accounts

Next topic

Client

Project Source

This Page