GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::deleteFiles. More...
#include <gpudb/protocol/delete_files.h>
Public Member Functions | |
DeleteFilesRequest () | |
Constructs a DeleteFilesRequest object with default parameters. More... | |
DeleteFilesRequest (const std::vector< std::string > &fileNames_, const std::map< std::string, std::string > &options_) | |
Constructs a DeleteFilesRequest object with the specified parameters. More... | |
Public Attributes | |
std::vector< std::string > | fileNames |
An array of names of files to be deleted. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::deleteFiles.
Deletes one or more files from KiFS.
Definition at line 19 of file delete_files.h.
|
inline |
Constructs a DeleteFilesRequest object with default parameters.
Definition at line 24 of file delete_files.h.
|
inline |
Constructs a DeleteFilesRequest object with the specified parameters.
[in] | fileNames_ | An array of names of files to be deleted. File paths may contain wildcard characters after the KiFS directory delimeter. Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character. |
[in] | options_ | Optional parameters.
|
Definition at line 62 of file delete_files.h.
std::vector<std::string> gpudb::DeleteFilesRequest::fileNames |
An array of names of files to be deleted.
File paths may contain wildcard characters after the KiFS directory delimeter.
Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character.
Definition at line 76 of file delete_files.h.
std::map<std::string, std::string> gpudb::DeleteFilesRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 95 of file delete_files.h.