Kinetica C# API  Version 6.0.1.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 
19  {
20 
24  public string name { get; set; }
25 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
33 
43  IDictionary<string, string> options)
44  {
45  this.name = name ?? "";
46  this.options = options ?? new Dictionary<string, string>();
47  } // end constructor
48 
49  } // end class CreateUserExternalRequest
50 
51 
52 
55  {
56 
59  public string name { get; set; }
60 
61  } // end class CreateUserExternalResponse
62 
63 
64 
65 
66 } // end namespace kinetica
CreateUserExternalRequest()
Constructs a CreateUserExternalRequest object with default parameters.
A set of parameters for /create/user/external.
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 /create/user/external.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14