Skip to main content

◆ alterRole() [1/2]

AlterRoleResponse kinetica.Kinetica.alterRole (AlterRoleRequestrequest_)
inline

Alters a Role.

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

Definition at line 11211 of file KineticaFunctions.cs.

◆ alterRole() [2/2]

AlterRoleResponse kinetica.Kinetica.alterRole (stringname,
stringaction,
string_value,
IDictionary< string, string >options = null )
inline

Alters a Role.

Parameters
nameName of the role to be altered. Must be an existing role.
actionModification operation to be applied to the role. Supported values:
  • SET_COMMENT: Sets the comment for an internal role.
  • SET_RESOURCE_GROUP: Sets the resource group for an internal role. The resource group must exist, otherwise, an empty string assigns the role to the default resource group.
_valueThe value of the modification, depending on action .
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 11263 of file KineticaFunctions.cs.

◆ AlterRoleAsync() [1/2]

async System.Threading.Tasks.Task< AlterRoleResponse > kinetica.Kinetica.AlterRoleAsync (AlterRoleRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Alters a Role.

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

◆ AlterRoleAsync() [2/2]

async System.Threading.Tasks.Task< AlterRoleResponse > kinetica.Kinetica.AlterRoleAsync (stringname,
stringaction,
string_value,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Alters a Role.

(async)

Parameters
nameName of the role to be altered. Must be an existing role.
actionModification operation to be applied to the role. Supported values:
  • SET_COMMENT: Sets the comment for an internal role.
  • SET_RESOURCE_GROUP: Sets the resource group for an internal role. The resource group must exist, otherwise, an empty string assigns the role to the default resource group.
_valueThe value of the modification, depending on action .
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 11302 of file KineticaFunctions.cs.