Kinetica C# API  Version 7.0.19.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 
26  public string name { get; set; }
27 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
36 
47  IDictionary<string, string> options = null)
48  {
49  this.name = name ?? "";
50  this.options = options ?? new Dictionary<string, string>();
51  } // end constructor
52 
53  } // end class CreateUserExternalRequest
54 
55 
56 
61  {
62 
65  public string name { get; set; }
66 
68  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
69 
70  } // end class CreateUserExternalResponse
71 
72 
73 
74 
75 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
CreateUserExternalRequest()
Constructs a CreateUserExternalRequest object with default parameters.
A set of parameters for Kinetica.createUserExternal(string,IDictionary{string, string}).
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}).
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.