Kinetica C# API  Version 6.2.0.1
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 
34  public struct Action
35  {
36 
39  public const string SET_PASSWORD = "set_password";
40  } // end struct Action
41 
42 
45  public string name { get; set; }
46 
57  public string action { get; set; }
58 
61  public string _value { get; set; }
62 
65  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
66 
67 
70  public AlterUserRequest() { }
71 
93  public AlterUserRequest( string name,
94  string action,
95  string _value,
96  IDictionary<string, string> options = null)
97  {
98  this.name = name ?? "";
99  this.action = action ?? "";
100  this._value = _value ?? "";
101  this.options = options ?? new Dictionary<string, string>();
102  } // end constructor
103 
104  } // end class AlterUserRequest
105 
106 
107 
112  {
113 
116  public string name { get; set; }
117 
118  } // end class AlterUserResponse
119 
120 
121 
122 
123 } // end namespace kinetica
Modification operation to be applied to the user.
Definition: AlterUser.cs:34
string action
Modification operation to be applied to the user.
Definition: AlterUser.cs:57
A set of results returned by Kinetica.alterUser(string,string,string,IDictionary<string, string>).
Definition: AlterUser.cs:111
string name
Name of the user to be altered.
Definition: AlterUser.cs:45
A set of parameters for Kinetica.alterUser(string,string,string,IDictionary<string, string>).
Definition: AlterUser.cs:19
AlterUserRequest()
Constructs an AlterUserRequest object with default parameters.
Definition: AlterUser.cs:70
const string SET_PASSWORD
Sets the password of the user.
Definition: AlterUser.cs:39
string _value
The value of the modification, depending on .
Definition: AlterUser.cs:61
IDictionary< string, string > options
Optional parameters.
Definition: AlterUser.cs:65
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:93