7 using System.Collections.Generic;
45 public string name {
get;
set; }
64 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
94 IDictionary<string, string>
options)
96 this.name = name ??
"";
97 this.action = action ??
"";
98 this._value = _value ??
"";
99 this.options = options ??
new Dictionary<string, string>();
114 public string name {
get;
set; }
Modification operation to be applied to the user.
string action
Modification operation to be applied to the user.
A set of results returned by Kinetica.alterUser(string,string,string,IDictionary<string, string>).
string name
Name of the user to be altered.
A set of parameters for Kinetica.alterUser(string,string,string,IDictionary<string, string>).
AlterUserRequest()
Constructs an AlterUserRequest object with default parameters.
AlterUserRequest(string name, string action, string _value, IDictionary< string, string > options)
Constructs an AlterUserRequest object with the specified parameters.
const string SET_PASSWORD
Sets the password of the user.
string _value
The value of the modification, depending on .
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica