Skip to main content

◆ revokePermission() [1/2]

RevokePermissionResponse kinetica.Kinetica.revokePermission (RevokePermissionRequestrequest_)
inline

Revoke user or role the specified permission on the specified object.

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

Definition at line 57900 of file KineticaFunctions.cs.

◆ revokePermission() [2/2]

RevokePermissionResponse kinetica.Kinetica.revokePermission (stringprincipal,
string_object,
stringobject_type,
stringpermission,
IDictionary< string, string >options = null )
inline

Revoke user or role the specified permission on the specified object.

Parameters
principalName of the user or role for which the permission is being revoked. Must be an existing user or role. The default value is ”.
_objectName of object permission is being revoked from. It is recommended to use a fully-qualified name when possible.
object_typeThe type of object being revoked. Supported values:
permissionPermission being revoked. Supported values:
  • ADMIN: Full read/write and administrative access on the object.
  • CONNECT: Connect access on the given data source or data sink.
  • CREATE: Ability to create new objects of this type.
  • DELETE: Delete rows from tables.
  • EXECUTE: Ability to Execute the Procedure object.
  • INSERT: Insert access to tables.
  • MONITOR: Monitor logs and statistics.
  • READ: Ability to read, list and use the object.
  • SEND_ALERT: Ability to send system alerts.
  • UPDATE: Update access to the table.
  • USER_ADMIN: Access to administer users and roles that do not have system_admin permission.
  • WRITE: Access to write, change and delete objects.
optionsOptional parameters.
  • COLUMNS: Revoke table security from these columns, comma-separated. The default value is ”.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 58110 of file KineticaFunctions.cs.

◆ RevokePermissionAsync() [1/2]

async System.Threading.Tasks.Task< RevokePermissionResponse > kinetica.Kinetica.RevokePermissionAsync (RevokePermissionRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Revoke user or role the specified permission on the specified object.

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

◆ RevokePermissionAsync() [2/2]

async System.Threading.Tasks.Task< RevokePermissionResponse > kinetica.Kinetica.RevokePermissionAsync (stringprincipal,
string_object,
stringobject_type,
stringpermission,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Revoke user or role the specified permission on the specified object.

(async)

Parameters
principalName of the user or role for which the permission is being revoked. Must be an existing user or role. The default value is ”.
_objectName of object permission is being revoked from. It is recommended to use a fully-qualified name when possible.
object_typeThe type of object being revoked. Supported values:
permissionPermission being revoked. Supported values:
  • ADMIN: Full read/write and administrative access on the object.
  • CONNECT: Connect access on the given data source or data sink.
  • CREATE: Ability to create new objects of this type.
  • DELETE: Delete rows from tables.
  • EXECUTE: Ability to Execute the Procedure object.
  • INSERT: Insert access to tables.
  • MONITOR: Monitor logs and statistics.
  • READ: Ability to read, list and use the object.
  • SEND_ALERT: Ability to send system alerts.
  • UPDATE: Update access to the table.
  • USER_ADMIN: Access to administer users and roles that do not have system_admin permission.
  • WRITE: Access to write, change and delete objects.
optionsOptional parameters.
  • COLUMNS: Revoke table security from these columns, comma-separated. The default value is ”.
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 58309 of file KineticaFunctions.cs.