Kinetica C# API  Version 6.1.0.0
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 
21  {
22 
27  public string name { get; set; }
28 
31  public string password { get; set; }
32 
34  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
35 
36 
40 
53  string password,
54  IDictionary<string, string> options)
55  {
56  this.name = name ?? "";
57  this.password = password ?? "";
58  this.options = options ?? new Dictionary<string, string>();
59  } // end constructor
60 
61  } // end class CreateUserInternalRequest
62 
63 
64 
69  {
70 
73  public string name { get; set; }
74 
75  } // end class CreateUserInternalResponse
76 
77 
78 
79 
80 } // end namespace kinetica
A set of results returned by Kinetica.createUserInternal(string,string,IDictionary<string, string>).
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 Kinetica.createUserInternal(string,string,IDictionary<string, string>).