Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateUserExternal.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 
108  public string name { get; set; }
109 
153  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
154 
155 
159 
211  IDictionary<string, string> options = null)
212  {
213  this.name = name ?? "";
214  this.options = options ?? new Dictionary<string, string>();
215  } // end constructor
216 
217  } // end class CreateUserExternalRequest
218 
219 
220 
225  {
226 
229  public string name { get; set; }
230 
232  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
233 
234  } // end class CreateUserExternalResponse
235 
236 
237 
238 
239 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
CreateUserExternalRequest()
Constructs a CreateUserExternalRequest object with default parameters.
const string DEFAULT_SCHEMA
Default schema to associate with this user
A set of parameters for Kinetica.createUserExternal(string,IDictionary{string, string}).
const string CREATE_HOME_DIRECTORY
When true, a home directory in KiFS is created for this user Supported values: TRUE FALSE The defau...
const string DIRECTORY_DATA_LIMIT
The maximum capacity to apply to the created directory if create_home_directory is true...
IDictionary< string, string > options
Optional parameters.
string name
Name of the user to be created.
A set of results returned by Kinetica.createUserExternal(string,IDictionary{string, string}).
const string RESOURCE_GROUP
Name of an existing resource group to associate with this user
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
CreateUserExternalRequest(string name, IDictionary< string, string > options=null)
Constructs a CreateUserExternalRequest object with the specified parameters.