7 using System.Collections.Generic;
16 public class GrantPermissionTableRequest : KineticaData
22 public struct Permission
49 public const string COLUMNS =
"columns";
55 public string name {
get;
set; }
113 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
176 IDictionary<string, string>
options =
null)
178 this.name =
name ??
"";
189 public class GrantPermissionTableResponse : KineticaData
193 public string name {
get;
set; }
211 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string table_name
Name of the table to which the permission grants access, in [schema_name.
GrantPermissionTableRequest()
Constructs a GrantPermissionTableRequest object with default parameters.
string filter_expression
Value of filter_expression.
const string COLUMNS
Apply security to these columns, comma-separated.
string name
Name of the user or role to which the permission will be granted.
const string TABLE_READ
Read access to the table.
const string TABLE_UPDATE
Update access to the table.
GrantPermissionTableRequest(string name, string permission, string table_name, string filter_expression=null, IDictionary< string, string > options=null)
Constructs a GrantPermissionTableRequest object with the specified parameters.
string table_name
Value of table_name.
IDictionary< string, string > options
Optional parameters.
const string TABLE_INSERT
Insert access to the table.
string name
Value of name.
string permission
Value of permission.
IDictionary< string, string > info
Additional information.
string permission
Permission to grant to the user or role.
string filter_expression
Optional filter expression to apply to this grant.
const string TABLE_ADMIN
Full read/write and administrative access to the table.
const string TABLE_DELETE
Delete access to the table.