Skip to main content

◆ createRole() [1/2]

CreateRoleResponse kinetica.Kinetica.createRole (CreateRoleRequestrequest_)
inline

Creates a new role.

This method should be used for on-premise deployments only.

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

Definition at line 23494 of file KineticaFunctions.cs.

◆ createRole() [2/2]

CreateRoleResponse kinetica.Kinetica.createRole (stringname,
IDictionary< string, string >options = null )
inline

Creates a new role.

This method should be used for on-premise deployments only.

Parameters
nameName of the role 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.
optionsOptional parameters.
  • RESOURCE_GROUP: Name of an existing resource group to associate with this user.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 23539 of file KineticaFunctions.cs.

◆ CreateRoleAsync() [1/2]

async System.Threading.Tasks.Task< CreateRoleResponse > kinetica.Kinetica.CreateRoleAsync (CreateRoleRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Creates a new role.

(async)

This method should be used for on-premise deployments only.

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 23511 of file KineticaFunctions.cs.

◆ CreateRoleAsync() [2/2]

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

Creates a new role.

(async)

This method should be used for on-premise deployments only.

Parameters
nameName of the role 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.
optionsOptional parameters.
  • RESOURCE_GROUP: Name of an existing resource group to associate with this user.
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 23567 of file KineticaFunctions.cs.