Kinetica C# API  Version 6.2.0.1
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 
35  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
36 
37 
41 
55  string password,
56  IDictionary<string, string> options = null)
57  {
58  this.name = name ?? "";
59  this.password = password ?? "";
60  this.options = options ?? new Dictionary<string, string>();
61  } // end constructor
62 
63  } // end class CreateUserInternalRequest
64 
65 
66 
71  {
72 
75  public string name { get; set; }
76 
77  } // end class CreateUserInternalResponse
78 
79 
80 
81 
82 } // 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=null)
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>).