7 using System.Collections.Generic;
62 public string name {
get;
set; }
88 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
127 IDictionary<string, string>
options)
129 this.name = name ??
"";
130 this.permission = permission ??
"";
131 this.options = options ??
new Dictionary<string, string>();
146 public string name {
get;
set; }
RevokePermissionSystemRequest()
Constructs a RevokePermissionSystemRequest object with default parameters.
A set of results returned by Kinetica.revokePermissionSystem(string,string,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
const string SYSTEM_READ
Read-only access to all tables.
A set of parameters for Kinetica.revokePermissionSystem(string,string,IDictionary<string, string>).
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