7 using System.Collections.Generic;
45 public string name {
get;
set; }
65 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
96 IDictionary<string, string>
options = null)
98 this.name = name ??
"";
99 this.action = action ??
"";
100 this._value = _value ??
"";
116 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.
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
AlterUserRequest(string name, string action, string _value, IDictionary< string, string > options=null)
Constructs an AlterUserRequest object with the specified parameters.