Kinetica C# API  Version 6.1.0.0
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 
64  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
65 
66 
69  public AlterUserRequest() { }
70 
91  public AlterUserRequest( string name,
92  string action,
93  string _value,
94  IDictionary<string, string> options)
95  {
96  this.name = name ?? "";
97  this.action = action ?? "";
98  this._value = _value ?? "";
99  this.options = options ?? new Dictionary<string, string>();
100  } // end constructor
101 
102  } // end class AlterUserRequest
103 
104 
105 
110  {
111 
114  public string name { get; set; }
115 
116  } // end class AlterUserResponse
117 
118 
119 
120 
121 } // 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:109
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:69
AlterUserRequest(string name, string action, string _value, IDictionary< string, string > options)
Constructs an AlterUserRequest object with the specified parameters.
Definition: AlterUser.cs:91
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:64
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14