Skip to main content

◆ createUserInternal() [1/2]

CreateUserInternalResponse kinetica.Kinetica.createUserInternal (CreateUserInternalRequestrequest_)
inline

Creates a new internal user (a user whose credentials are managed by the database system).

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 30966 of file KineticaFunctions.cs.

◆ createUserInternal() [2/2]

CreateUserInternalResponse kinetica.Kinetica.createUserInternal (stringname,
stringpassword,
IDictionary< string, string >options = null )
inline

Creates a new internal user (a user whose credentials are managed by the database system).

Parameters
nameName 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.
passwordInitial password of the user to be created. May be an empty string for no password.
optionsOptional parameters.The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 31078 of file KineticaFunctions.cs.

◆ CreateUserInternalAsync() [1/2]

async System.Threading.Tasks.Task< CreateUserInternalResponse > kinetica.Kinetica.CreateUserInternalAsync (CreateUserInternalRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Creates a new internal user (a user whose credentials are managed by the database system).

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 30982 of file KineticaFunctions.cs.

◆ CreateUserInternalAsync() [2/2]

async System.Threading.Tasks.Task< CreateUserInternalResponse > kinetica.Kinetica.CreateUserInternalAsync (stringname,
stringpassword,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Creates a new internal user (a user whose credentials are managed by the database system).

(async)

Parameters
nameName 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.
passwordInitial password of the user to be created. May be an empty string for no password.
optionsOptional parameters.The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 31175 of file KineticaFunctions.cs.