7 using System.Collections.Generic;
 
   98         public string name { 
get; set; }
 
  146         public IDictionary<string, string> 
options { 
get; set; } = 
new Dictionary<string, string>();
 
  207                                              IDictionary<string, string> 
options = null)
 
  209             this.name = name ?? 
"";
 
  210             this.permission = permission ?? 
"";
 
  211             this.table_name = table_name ?? 
"";
 
  212             this.options = 
options ?? 
new Dictionary<string, string>();
 
  227         public string name { 
get; set; }
 
  238         public IDictionary<string, string> 
info { 
get; set; } = 
new Dictionary<string, string>();
 
const string TABLE_READ
Read access to the table.
IDictionary< string, string > info
Additional information. 
const string TABLE_INSERT
Insert access to the table.
RevokePermissionTableRequest()
Constructs a RevokePermissionTableRequest object with default parameters. 
string permission
Value of . 
A set of results returned by Kinetica.revokePermissionTable(string,string,string,IDictionary{string, string}). 
RevokePermissionTableRequest(string name, string permission, string table_name, IDictionary< string, string > options=null)
Constructs a RevokePermissionTableRequest object with the specified parameters. 
string permission
Permission to revoke from the user or role. 
const string COLUMNS
Apply security to these columns, comma-separated. 
const string TABLE_DELETE
Delete access to the table.
const string TABLE_UPDATE
Update access to the table.
KineticaData - class to help with Avro Encoding for Kinetica 
Permission to revoke from the user or role. 
const string TABLE_ADMIN
Full read/write and administrative access to the table. 
string table_name
Value of . 
string table_name
Name of the table to which the permission grants access. 
IDictionary< string, string > options
Optional parameters. 
string name
Name of the user or role from which the permission will be revoked. 
A set of parameters for Kinetica.revokePermissionTable(string,string,string,IDictionary{string, string}).