Skip to main content

◆ grantPermissionTable() [1/2]

GrantPermissionTableResponse kinetica.Kinetica.grantPermissionTable (GrantPermissionTableRequestrequest_)
inline

[DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.

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

Definition at line 42944 of file KineticaFunctions.cs.

◆ grantPermissionTable() [2/2]

GrantPermissionTableResponse kinetica.Kinetica.grantPermissionTable (stringname,
stringpermission,
stringtable_name,
stringfilter_expression = "",
IDictionary< string, string >options = null )
inline

[DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.

Parameters
nameName of the user or role to which the permission will be granted. Must be an existing user or role.
permissionPermission to grant to the user or role. Supported values:
table_nameName of the table to which the permission grants access, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table, view, or schema. If a schema, the permission also applies to tables and views in the schema.
filter_expressionOptional filter expression to apply to this grant. Only rows that match the filter will be affected. The default value is ”.
optionsOptional parameters.
  • COLUMNS: Apply security to 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 43033 of file KineticaFunctions.cs.

◆ GrantPermissionTableAsync() [1/2]

async System.Threading.Tasks.Task< GrantPermissionTableResponse > kinetica.Kinetica.GrantPermissionTableAsync (GrantPermissionTableRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

[DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or 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 42962 of file KineticaFunctions.cs.

◆ GrantPermissionTableAsync() [2/2]

async System.Threading.Tasks.Task< GrantPermissionTableResponse > kinetica.Kinetica.GrantPermissionTableAsync (stringname,
stringpermission,
stringtable_name,
stringfilter_expression = "",
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

[DEPRECATED–please use grantPermission instead] Grants a table-level permission to a user or role.

(async)

Parameters
nameName of the user or role to which the permission will be granted. Must be an existing user or role.
permissionPermission to grant to the user or role. Supported values:
table_nameName of the table to which the permission grants access, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table, view, or schema. If a schema, the permission also applies to tables and views in the schema.
filter_expressionOptional filter expression to apply to this grant. Only rows that match the filter will be affected. The default value is ”.
optionsOptional parameters.
  • COLUMNS: Apply security to 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 43111 of file KineticaFunctions.cs.