Kinetica C# API  Version 6.1.0.0
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 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
35 
45  IDictionary<string, string> options)
46  {
47  this.name = name ?? "";
48  this.options = options ?? new Dictionary<string, string>();
49  } // end constructor
50 
51  } // end class CreateUserExternalRequest
52 
53 
54 
59  {
60 
63  public string name { get; set; }
64 
65  } // end class CreateUserExternalResponse
66 
67 
68 
69 
70 } // end namespace kinetica
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.
CreateUserExternalRequest(string name, IDictionary< string, string > options)
Constructs a CreateUserExternalRequest object with the specified 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