7 using System.Collections.Generic;
51 public string name {
get; set; }
76 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
111 IDictionary<string, string>
options = null)
113 this.name = name ??
"";
114 this.permission = permission ??
"";
115 this.proc_name = proc_name ??
"";
116 this.options =
options ??
new Dictionary<string, string>();
131 public string name {
get; set; }
142 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
A set of parameters for Kinetica.grantPermissionProc(string,string,string,IDictionary{string, string}).
string permission
Permission to grant to the user or role.
IDictionary< string, string > info
Additional information.
string proc_name
Value of .
string permission
Value of .
GrantPermissionProcRequest(string name, string permission, string proc_name, IDictionary< string, string > options=null)
Constructs a GrantPermissionProcRequest object with the specified parameters.
A set of results returned by Kinetica.grantPermissionProc(string,string,string,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
const string PROC_EXECUTE
Execute access to the proc.
GrantPermissionProcRequest()
Constructs a GrantPermissionProcRequest object with default parameters.
Permission to grant to the user or role.
const string PROC_ADMIN
Admin access to the proc.
KineticaData - class to help with Avro Encoding for Kinetica
string name
Name of the user or role to which the permission will be granted.
string proc_name
Name of the proc to which the permission grants access.