GPUdb C++ API
Version 7.1.10.0
|
A set of input parameters for const. More...
#include <gpudb/protocol/create_credential.h>
Public Member Functions | |
CreateCredentialRequest () | |
Constructs a CreateCredentialRequest object with default parameter values. More... | |
CreateCredentialRequest (const std::string &credentialName_, const std::string &type_, const std::string &identity_, const std::string &secret_, const std::map< std::string, std::string > &options_) | |
Constructs a CreateCredentialRequest object with the specified parameters. More... | |
Public Attributes | |
std::string | credentialName |
std::string | type |
std::string | identity |
std::string | secret |
std::map< std::string, std::string > | options |
A set of input parameters for const.
Create a new credential.
Definition at line 19 of file create_credential.h.
|
inline |
Constructs a CreateCredentialRequest object with default parameter values.
Definition at line 26 of file create_credential.h.
|
inline |
Constructs a CreateCredentialRequest object with the specified parameters.
[in] | credentialName_ | Name of the credential to be created. Must contain only letters, digits, and underscores, and cannot begin with a digit. Must not match an existing credential name. |
[in] | type_ | Type of the credential to be created.
|
[in] | identity_ | User of the credential to be created. |
[in] | secret_ | Password of the credential to be created. |
[in] | options_ | Optional parameters. |
Definition at line 69 of file create_credential.h.
std::string gpudb::CreateCredentialRequest::credentialName |
Definition at line 78 of file create_credential.h.
std::string gpudb::CreateCredentialRequest::identity |
Definition at line 80 of file create_credential.h.
std::map<std::string, std::string> gpudb::CreateCredentialRequest::options |
Definition at line 82 of file create_credential.h.
std::string gpudb::CreateCredentialRequest::secret |
Definition at line 81 of file create_credential.h.
std::string gpudb::CreateCredentialRequest::type |
Definition at line 79 of file create_credential.h.