7 using System.Collections.Generic;
27 public string name {
get;
set; }
34 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
54 IDictionary<string, string>
options)
56 this.name = name ??
"";
57 this.password = password ??
"";
58 this.options = options ??
new Dictionary<string, string>();
73 public string name {
get;
set; }
A set of results returned by Kinetica.createUserInternal(string,string,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
string name
Name of the user to be created.
string password
Initial password of the user to be created.
CreateUserInternalRequest(string name, string password, IDictionary< string, string > options)
Constructs a CreateUserInternalRequest object with the specified parameters.
CreateUserInternalRequest()
Constructs a CreateUserInternalRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
A set of parameters for Kinetica.createUserInternal(string,string,IDictionary<string, string>).