GPUdb C++ API
Version 7.2.2.4
|
A set of parameters for GPUdb::revokeRole. More...
#include <gpudb/protocol/revoke_role.h>
Public Member Functions | |
RevokeRoleRequest () | |
Constructs a RevokeRoleRequest object with default parameters. More... | |
RevokeRoleRequest (const std::string &role_, const std::string &member_, const std::map< std::string, std::string > &options_) | |
Constructs a RevokeRoleRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | role |
Name of the role in which membership will be revoked. More... | |
std::string | member |
Name of the user or role that will be revoked membership in role. More... | |
std::map< std::string, std::string > | options |
Optional parameters. More... | |
A set of parameters for GPUdb::revokeRole.
Revokes membership in a role from a user or role.
Definition at line 17 of file revoke_role.h.
|
inline |
Constructs a RevokeRoleRequest object with default parameters.
Definition at line 22 of file revoke_role.h.
|
inline |
Constructs a RevokeRoleRequest object with the specified parameters.
[in] | role_ | Name of the role in which membership will be revoked. Must be an existing role. |
[in] | member_ | Name of the user or role that will be revoked membership in role_. Must be an existing user or role. |
[in] | options_ | Optional parameters. The default value is an empty map. |
Definition at line 40 of file revoke_role.h.
std::string gpudb::RevokeRoleRequest::member |
Name of the user or role that will be revoked membership in role.
Must be an existing user or role.
Definition at line 57 of file revoke_role.h.
std::map<std::string, std::string> gpudb::RevokeRoleRequest::options |
Optional parameters.
The default value is an empty map.
Definition at line 62 of file revoke_role.h.
std::string gpudb::RevokeRoleRequest::role |
Name of the role in which membership will be revoked.
Must be an existing role.
Definition at line 51 of file revoke_role.h.