Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateUserInternal.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 
19  {
20 
25  public string name { get; set; }
26 
29  public string password { get; set; }
30 
32  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
33 
34 
38 
51  string password,
52  IDictionary<string, string> options)
53  {
54  this.name = name ?? "";
55  this.password = password ?? "";
56  this.options = options ?? new Dictionary<string, string>();
57  } // end constructor
58 
59  } // end class CreateUserInternalRequest
60 
61 
62 
65  {
66 
69  public string name { get; set; }
70 
71  } // end class CreateUserInternalResponse
72 
73 
74 
75 
76 } // end namespace kinetica
A set of results returned by /create/user/internal.
IDictionary< string, string > options
Optional parameters.
string name
Name of the user to be created.
string password
Initial password of the user to be created.
CreateUserInternalRequest(string name, string password, IDictionary< string, string > options)
Constructs a CreateUserInternalRequest object with the specified parameters.
CreateUserInternalRequest()
Constructs a CreateUserInternalRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for /create/user/internal.