GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::alterRole. More...
#include <gpudb/protocol/alter_role.h>
Public Member Functions | |
AlterRoleRequest () | |
Constructs an AlterRoleRequest object with default parameters. More... | |
AlterRoleRequest (const std::string &name_, const std::string &action_, const std::string &value_, const std::map< std::string, std::string > &options_) | |
Constructs an AlterRoleRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | name |
Name of the role to be altered. More... | |
std::string | action |
Modification operation to be applied to the role. More... | |
std::string | value |
The value of the modification, depending on action. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::alterRole.
Alters a Role.
Definition at line 17 of file alter_role.h.
|
inline |
Constructs an AlterRoleRequest object with default parameters.
Definition at line 22 of file alter_role.h.
|
inline |
Constructs an AlterRoleRequest object with the specified parameters.
[in] | name_ | Name of the role to be altered. Must be an existing role. |
[in] | action_ | Modification operation to be applied to the role. Supported values:
|
[in] | value_ | The value of the modification, depending on action_. |
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 55 of file alter_role.h.
std::string gpudb::AlterRoleRequest::action |
Modification operation to be applied to the role.
Supported values:
Definition at line 81 of file alter_role.h.
std::string gpudb::AlterRoleRequest::name |
Name of the role to be altered.
Must be an existing role.
Definition at line 66 of file alter_role.h.
std::map<std::string, std::string> gpudb::AlterRoleRequest::options |
std::string gpudb::AlterRoleRequest::value |
The value of the modification, depending on action.
Definition at line 86 of file alter_role.h.