Kinetica C# API  Version 6.2.0.1
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 
67  } // end class CreateUserExternalResponse
68 
69 
70 
71 
72 } // 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.
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.