Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
RevokePermissionSystem.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 
18  {
19 
25  public struct Permission
26  {
27 
30  public const string SYSTEM_ADMIN = "system_admin";
31 
33  public const string SYSTEM_WRITE = "system_write";
34 
36  public const string SYSTEM_READ = "system_read";
37  } // end struct Permission
38 
39 
42  public string name { get; set; }
43 
47  public string permission { get; set; }
48 
50  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
51 
52 
56 
69  string permission,
70  IDictionary<string, string> options)
71  {
72  this.name = name ?? "";
73  this.permission = permission ?? "";
74  this.options = options ?? new Dictionary<string, string>();
75  } // end constructor
76 
77  } // end class RevokePermissionSystemRequest
78 
79 
80 
84  {
85 
88  public string name { get; set; }
89 
92  public string permission { get; set; }
93 
94  } // end class RevokePermissionSystemResponse
95 
96 
97 
98 
99 } // end namespace kinetica
RevokePermissionSystemRequest()
Constructs a RevokePermissionSystemRequest object with default parameters.
A set of results returned by /revoke/permission/system.
IDictionary< string, string > options
Optional parameters.
const string SYSTEM_READ
Read-only access to all tables.
A set of parameters for /revoke/permission/system.
const string SYSTEM_ADMIN
Full access to all data and system functions.
Permission to revoke from the user or role.
const string SYSTEM_WRITE
Read and write access to all tables.
string name
Name of the user or role from which the permission will be revoked.
RevokePermissionSystemRequest(string name, string permission, IDictionary< string, string > options)
Constructs a RevokePermissionSystemRequest object with the specified parameters.
string permission
Permission to revoke from the user or role.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14