GPUdb C++ API
Version 7.0.19.0
|
A set of input parameters for const. More...
#include <gpudb/protocol/create_user_internal.h>
Public Member Functions | |
CreateUserInternalRequest () | |
Constructs a CreateUserInternalRequest object with default parameter values. More... | |
CreateUserInternalRequest (const std::string &name_, const std::string &password_, const std::map< std::string, std::string > &options_) | |
Constructs a CreateUserInternalRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | name |
std::string | password |
std::map< std::string, std::string > | options |
A set of input parameters for const.
Creates a new internal user (a user whose credentials are managed by the database system).
Definition at line 19 of file create_user_internal.h.
|
inline |
Constructs a CreateUserInternalRequest object with default parameter values.
Definition at line 26 of file create_user_internal.h.
|
inline |
Constructs a CreateUserInternalRequest object with the specified parameters.
[in] | name_ | Name of the user to be created. Must contain only lowercase letters, digits, and underscores, and cannot begin with a digit. Must not be the same name as an existing user or role. |
[in] | password_ | Initial password of the user to be created. May be an empty string for no password. |
[in] | options_ | Optional parameters.
|
Definition at line 52 of file create_user_internal.h.
std::string gpudb::CreateUserInternalRequest::name |
Definition at line 59 of file create_user_internal.h.
std::map<std::string, std::string> gpudb::CreateUserInternalRequest::options |
Definition at line 61 of file create_user_internal.h.
std::string gpudb::CreateUserInternalRequest::password |
Definition at line 60 of file create_user_internal.h.