7 using System.Collections.Generic;
48 public string name {
get; set; }
65 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
92 IDictionary<string, string>
options)
94 this.name = name ??
"";
95 this.permission = permission ??
"";
96 this.table_name = table_name ??
"";
97 this.filter_expression = filter_expression ??
"";
98 this.options = options ??
new Dictionary<string, string>();
112 public string name {
get; set; }
string table_name
Value of .
string filter_expression
Value of .
GrantPermissionTableRequest()
Constructs a GrantPermissionTableRequest object with default parameters.
const string TABLE_ADMIN
Full read/write and administrative access to the table.
GrantPermissionTableRequest(string name, string permission, string table_name, string filter_expression, IDictionary< string, string > options)
Constructs a GrantPermissionTableRequest object with the specified parameters.
const string TABLE_DELETE
Delete access to the table.
A set of parameters for /grant/permission/table.
A set of results returned by /grant/permission/table.
const string TABLE_INSERT
Insert access to the table.
IDictionary< string, string > options
Optional parameters.
string filter_expression
Reserved for future use.
string name
Name of the user or role to which the permission will be granted.
string permission
Value of .
KineticaData - class to help with Avro Encoding for Kinetica
Permission to grant to the user or role.
string table_name
Name of the table to which the permission grants access.
string permission
Permission to grant to the user or role.
const string TABLE_UPDATE
Update access to the table.
const string TABLE_READ
Read access to the table.