GPUdb C++ API
Version 5.2.0.0
|
A set of input parameters for revokePermissionTable(const RevokePermissionTableRequest&) const. More...
#include <gpudb/protocol/revoke_permission_table.h>
Public Member Functions | |
RevokePermissionTableRequest () | |
Constructs a RevokePermissionTableRequest object with default parameter values. More... | |
RevokePermissionTableRequest (const std::string &name, const std::string &permission, const std::string &tableName, const std::map< std::string, std::string > &options) | |
Constructs a RevokePermissionTableRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | name |
std::string | permission |
std::string | tableName |
std::map< std::string, std::string > | options |
A set of input parameters for revokePermissionTable(const RevokePermissionTableRequest&) const.
Revokes a table-level permission from a user or role.
Definition at line 18 of file revoke_permission_table.h.
|
inline |
Constructs a RevokePermissionTableRequest object with default parameter values.
Definition at line 25 of file revoke_permission_table.h.
|
inline |
Constructs a RevokePermissionTableRequest object with the specified parameters.
[in] | name | Name of the user or role from which the permission will be revoked. Must be an existing user or role. |
[in] | permission | Permission to revoke from the user or role. Values: 'table_admin', 'table_insert', 'table_update', 'table_delete', 'table_read'. |
[in] | tableName | Name of the table to which the permission grants access. Must be an existing table, collection, or view. |
[in] | options | Optional parameters. |
Definition at line 48 of file revoke_permission_table.h.
std::string gpudb::RevokePermissionTableRequest::name |
Definition at line 56 of file revoke_permission_table.h.
std::map<std::string, std::string> gpudb::RevokePermissionTableRequest::options |
Definition at line 59 of file revoke_permission_table.h.
std::string gpudb::RevokePermissionTableRequest::permission |
Definition at line 57 of file revoke_permission_table.h.
std::string gpudb::RevokePermissionTableRequest::tableName |
Definition at line 58 of file revoke_permission_table.h.