7 using System.Collections.Generic;
94 public const string TRUE =
"true";
95 public const string FALSE =
"false";
108 public string name {
get; set; }
153 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
211 IDictionary<string, string>
options = null)
213 this.name = name ??
"";
214 this.options =
options ??
new Dictionary<string, string>();
229 public string name {
get; set; }
232 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IDictionary< string, string > info
Additional information.
CreateUserExternalRequest()
Constructs a CreateUserExternalRequest object with default parameters.
const string DEFAULT_SCHEMA
Default schema to associate with this user
A set of parameters for Kinetica.createUserExternal(string,IDictionary{string, string}).
const string CREATE_HOME_DIRECTORY
When true, a home directory in KiFS is created for this user Supported values: TRUE FALSE The defau...
const string DIRECTORY_DATA_LIMIT
The maximum capacity to apply to the created directory if create_home_directory is true...
IDictionary< string, string > options
Optional parameters.
string name
Name of the user to be created.
A set of results returned by Kinetica.createUserExternal(string,IDictionary{string, string}).
const string RESOURCE_GROUP
Name of an existing resource group to associate with this user
KineticaData - class to help with Avro Encoding for Kinetica
CreateUserExternalRequest(string name, IDictionary< string, string > options=null)
Constructs a CreateUserExternalRequest object with the specified parameters.