Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterUser.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 
10 
11 namespace kinetica
12 {
13 
20  {
21 
41  public struct Action
42  {
43 
46  public const string SET_PASSWORD = "set_password";
47 
51  public const string SET_RESOURCE_GROUP = "set_resource_group";
52  } // end struct Action
53 
54 
57  public string name { get; set; }
58 
76  public string action { get; set; }
77 
80  public string _value { get; set; }
81 
84  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
85 
86 
89  public AlterUserRequest() { }
90 
119  public AlterUserRequest( string name,
120  string action,
121  string _value,
122  IDictionary<string, string> options = null)
123  {
124  this.name = name ?? "";
125  this.action = action ?? "";
126  this._value = _value ?? "";
127  this.options = options ?? new Dictionary<string, string>();
128  } // end constructor
129 
130  } // end class AlterUserRequest
131 
132 
133 
138  {
139 
142  public string name { get; set; }
143 
145  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
146 
147  } // end class AlterUserResponse
148 
149 
150 
151 
152 } // end namespace kinetica
Modification operation to be applied to the user.
Definition: AlterUser.cs:41
string action
Modification operation to be applied to the user.
Definition: AlterUser.cs:76
A set of results returned by Kinetica.alterUser(string,string,string,IDictionary{string, string}).
Definition: AlterUser.cs:137
string name
Name of the user to be altered.
Definition: AlterUser.cs:57
const string SET_RESOURCE_GROUP
Sets the resource group for an internal user.
Definition: AlterUser.cs:51
A set of parameters for Kinetica.alterUser(string,string,string,IDictionary{string, string}).
Definition: AlterUser.cs:19
IDictionary< string, string > info
Additional information.
Definition: AlterUser.cs:145
AlterUserRequest()
Constructs an AlterUserRequest object with default parameters.
Definition: AlterUser.cs:89
string name
Value of .
Definition: AlterUser.cs:142
const string SET_PASSWORD
Sets the password of the user.
Definition: AlterUser.cs:46
string _value
The value of the modification, depending on .
Definition: AlterUser.cs:80
IDictionary< string, string > options
Optional parameters.
Definition: AlterUser.cs:84
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AlterUserRequest(string name, string action, string _value, IDictionary< string, string > options=null)
Constructs an AlterUserRequest object with the specified parameters.
Definition: AlterUser.cs:119