7 using System.Collections.Generic;
42 public string name {
get; set; }
50 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
69 IDictionary<string, string>
options)
71 this.name = name ??
"";
72 this.permission = permission ??
"";
73 this.options = options ??
new Dictionary<string, string>();
87 public string name {
get; set; }
A set of results returned by /grant/permission/system.
const string SYSTEM_WRITE
Read and write access to all tables.
string permission
Permission to grant to the user or role.
const string SYSTEM_ADMIN
Full access to all data and system functions.
GrantPermissionSystemRequest(string name, string permission, IDictionary< string, string > options)
Constructs a GrantPermissionSystemRequest object with the specified parameters.
string name
Name of the user or role to which the permission will be granted.
A set of parameters for /grant/permission/system.
string permission
Value of .
IDictionary< string, string > options
Optional parameters.
GrantPermissionSystemRequest()
Constructs a GrantPermissionSystemRequest object with default parameters.
Permission to grant to the user or role.
KineticaData - class to help with Avro Encoding for Kinetica
const string SYSTEM_READ
Read-only access to all tables.