Kinetica C# API  Version 7.0.19.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 
21  {
22 
35  public struct Options
36  {
37 
40  public const string RESOURCE_GROUP = "resource_group";
41  } // end struct Options
42 
43 
48  public string name { get; set; }
49 
52  public string password { get; set; }
53 
64  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
65 
66 
70 
92  string password,
93  IDictionary<string, string> options = null)
94  {
95  this.name = name ?? "";
96  this.password = password ?? "";
97  this.options = options ?? new Dictionary<string, string>();
98  } // end constructor
99 
100  } // end class CreateUserInternalRequest
101 
102 
103 
108  {
109 
116  public struct Info
117  {
118  } // end struct Info
119 
120 
123  public string name { get; set; }
124 
129  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
130 
131  } // end class CreateUserInternalResponse
132 
133 
134 
135 
136 } // 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.
IDictionary< string, string > info
Additional information.
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}).
const string RESOURCE_GROUP
Name of an existing resource group to associate with this user