7 using System.Collections.Generic;
27 public const string TRUE =
"true";
30 public const string FALSE =
"false";
55 public string name {
get;
set; }
113 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
178 IDictionary<string, string>
options =
null)
180 this.name =
name ??
"";
181 this.action =
action ??
"";
182 this._value =
_value ??
"";
194 public string name {
get;
set; }
197 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of string constants for the parameter action.
const string SET_ACTIVATED
Is the user allowed to login.
string action
Modification operation to be applied to the user.
A set of results returned by Kinetica.alterUser.
string name
Name of the user to be altered.
const string SET_RESOURCE_GROUP
Sets the resource group for an internal user.
const string FALSE
User may not login
const string TRUE
User may login
const string SET_COMMENT
Sets the comment for an internal user.
A set of parameters for Kinetica.alterUser.
const string SET_DEFAULT_SCHEMA
Set the default_schema for an internal user.
IDictionary< string, string > info
Additional information.
AlterUserRequest()
Constructs an AlterUserRequest object with default parameters.
string name
Value of name.
const string SET_PASSWORD
Sets the password of the user.
string _value
The value of the modification, depending on action.
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.