Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
RevokePermissionTable.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
20  {
21 
54  public struct Permission
55  {
56 
59  public const string TABLE_ADMIN = "table_admin";
60 
62  public const string TABLE_INSERT = "table_insert";
63 
65  public const string TABLE_UPDATE = "table_update";
66 
68  public const string TABLE_DELETE = "table_delete";
69 
71  public const string TABLE_READ = "table_read";
72  } // end struct Permission
73 
74 
87  public struct Options
88  {
89 
92  public const string COLUMNS = "columns";
93  } // end struct Options
94 
95 
98  public string name { get; set; }
99 
130  public string permission { get; set; }
131 
134  public string table_name { get; set; }
135 
146  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
147 
148 
152 
205  string permission,
206  string table_name,
207  IDictionary<string, string> options = null)
208  {
209  this.name = name ?? "";
210  this.permission = permission ?? "";
211  this.table_name = table_name ?? "";
212  this.options = options ?? new Dictionary<string, string>();
213  } // end constructor
214 
215  } // end class RevokePermissionTableRequest
216 
217 
218 
223  {
224 
227  public string name { get; set; }
228 
231  public string permission { get; set; }
232 
235  public string table_name { get; set; }
236 
238  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
239 
240  } // end class RevokePermissionTableResponse
241 
242 
243 
244 
245 } // end namespace kinetica
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.
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
Definition: KineticaData.cs:14
Permission to revoke from the user or role.
const string TABLE_ADMIN
Full read/write and administrative access to the table.
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}).