7 using System.Collections.Generic;
59 public string name {
get; set; }
88 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
127 IDictionary<string, string>
options = null)
129 this.name = name ??
"";
130 this.permission = permission ??
"";
131 this.directory_name = directory_name ??
"";
132 this.options =
options ??
new Dictionary<string, string>();
147 public string name {
get; set; }
159 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string DIRECTORY_READ
For files in the directory, access to list files, download files, or use files in server side functio...
const string DIRECTORY_WRITE
Access to upload files to, or delete files from, the directory.
string directory_name
Name of the KiFS directory to which the permission grants access.
A set of parameters for Kinetica.grantPermissionDirectory(string,string,string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
string permission
Permission to grant to the user or role.
Permission to grant to the user or role.
string directory_name
Value of .
IDictionary< string, string > options
Optional parameters.
string name
Name of the user or role to which the permission will be granted.
GrantPermissionDirectoryRequest(string name, string permission, string directory_name, IDictionary< string, string > options=null)
Constructs a GrantPermissionDirectoryRequest object with the specified parameters.
A set of results returned by Kinetica.grantPermissionDirectory(string,string,string,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
string permission
Value of .
GrantPermissionDirectoryRequest()
Constructs a GrantPermissionDirectoryRequest object with default parameters.