Kinetica C# API  Version 6.0.1.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 
18  {
19 
25  public struct Action
26  {
27 
30  public const string SET_PASSWORD = "set_password";
31  } // end struct Action
32 
33 
36  public string name { get; set; }
37 
41  public string action { get; set; }
42 
45  public string _value { get; set; }
46 
48  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
49 
50 
53  public AlterUserRequest() { }
54 
67  public AlterUserRequest( string name,
68  string action,
69  string _value,
70  IDictionary<string, string> options)
71  {
72  this.name = name ?? "";
73  this.action = action ?? "";
74  this._value = _value ?? "";
75  this.options = options ?? new Dictionary<string, string>();
76  } // end constructor
77 
78  } // end class AlterUserRequest
79 
80 
81 
84  {
85 
88  public string name { get; set; }
89 
90  } // end class AlterUserResponse
91 
92 
93 
94 
95 } // end namespace kinetica
Modification operation to be applied to the user.
Definition: AlterUser.cs:25
string action
Modification operation to be applied to the user.
Definition: AlterUser.cs:41
A set of results returned by /alter/user.
Definition: AlterUser.cs:83
string name
Name of the user to be altered.
Definition: AlterUser.cs:36
A set of parameters for /alter/user.
Definition: AlterUser.cs:17
AlterUserRequest()
Constructs an AlterUserRequest object with default parameters.
Definition: AlterUser.cs:53
AlterUserRequest(string name, string action, string _value, IDictionary< string, string > options)
Constructs an AlterUserRequest object with the specified parameters.
Definition: AlterUser.cs:67
string name
Value of .
Definition: AlterUser.cs:88
const string SET_PASSWORD
Sets the password of the user.
Definition: AlterUser.cs:30
string _value
The value of the modification, depending on .
Definition: AlterUser.cs:45
IDictionary< string, string > options
Optional parameters.
Definition: AlterUser.cs:48
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14