7 using System.Collections.Generic;
57 public string name {
get; set; }
84 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
122 IDictionary<string, string>
options = null)
124 this.name = name ??
"";
125 this.action = action ??
"";
126 this._value = _value ??
"";
127 this.options =
options ??
new Dictionary<string, string>();
142 public string name {
get; set; }
145 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
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.
const string SET_RESOURCE_GROUP
Sets the resource group for an internal user.
A set of parameters for Kinetica.alterUser(string,string,string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
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.