Kinetica C# API  Version 7.1.10.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 
68  public struct Options
69  {
70 
73  public const string RESOURCE_GROUP = "resource_group";
74 
76  public const string DEFAULT_SCHEMA = "default_schema";
77 
93  public const string CREATE_HOME_DIRECTORY = "create_home_directory";
94  public const string TRUE = "true";
95  public const string FALSE = "false";
96 
101  public const string DIRECTORY_DATA_LIMIT = "directory_data_limit";
102  } // end struct Options
103 
104 
109  public string name { get; set; }
110 
113  public string password { get; set; }
114 
158  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
159 
160 
164 
219  string password,
220  IDictionary<string, string> options = null)
221  {
222  this.name = name ?? "";
223  this.password = password ?? "";
224  this.options = options ?? new Dictionary<string, string>();
225  } // end constructor
226 
227  } // end class CreateUserInternalRequest
228 
229 
230 
235  {
236 
243  public struct Info
244  {
245  } // end struct Info
246 
247 
250  public string name { get; set; }
251 
256  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
257 
258  } // end class CreateUserInternalResponse
259 
260 
261 
262 
263 } // 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.
const string CREATE_HOME_DIRECTORY
When true, a home directory in KiFS is created for this user Supported values: TRUE FALSE The defau...
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string DEFAULT_SCHEMA
Default schema to associate with this user
A set of parameters for Kinetica.createUserInternal(string,string,IDictionary{string, string}).
const string DIRECTORY_DATA_LIMIT
The maximum capacity to apply to the created directory if create_home_directory is true...
const string RESOURCE_GROUP
Name of an existing resource group to associate with this user