|
GPUdb C++ API
Version 7.2.3.0
|
A set of parameters for GPUdb::dropBackup. More...
#include <gpudb/protocol/drop_backup.h>
Public Member Functions | |
| DropBackupRequest () | |
| Constructs a DropBackupRequest object with default parameters. More... | |
| DropBackupRequest (const std::string &backupName_, const std::string &datasinkName_, const std::map< std::string, std::string > &options_) | |
| Constructs a DropBackupRequest object with the specified parameters. More... | |
Public Attributes | |
| std::string | backupName |
| Name of the backup to be deleted. More... | |
| std::string | datasinkName |
| Data sink through which the backup is accessible. More... | |
| std::map< std::string, std::string > | options |
| Optional parameters. More... | |
A set of parameters for GPUdb::dropBackup.
Deletes one or more existing database backups and contained snapshots, accessible via the data sink specified by datasinkName.
Definition at line 21 of file drop_backup.h.
|
inline |
Constructs a DropBackupRequest object with default parameters.
Definition at line 26 of file drop_backup.h.
|
inline |
Constructs a DropBackupRequest object with the specified parameters.
| [in] | backupName_ | Name of the backup to be deleted. An empty string or '*' will delete all existing backups. Any text followed by a '*' will delete backups whose name starts with that text. When deleting multiple backups, delete_all_backups must be set to true. |
| [in] | datasinkName_ | Data sink through which the backup is accessible. |
| [in] | options_ | Optional parameters.
|
Definition at line 97 of file drop_backup.h.
| std::string gpudb::DropBackupRequest::backupName |
Name of the backup to be deleted.
An empty string or '*' will delete all existing backups. Any text followed by a '*' will delete backups whose name starts with that text. When deleting multiple backups, delete_all_backups must be set to true.
Definition at line 111 of file drop_backup.h.
| std::string gpudb::DropBackupRequest::datasinkName |
Data sink through which the backup is accessible.
Definition at line 116 of file drop_backup.h.
| std::map<std::string, std::string> gpudb::DropBackupRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 154 of file drop_backup.h.