Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateRole.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 
18  {
19 
24  public string name { get; set; }
25 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public CreateRoleRequest() { }
33 
43  public CreateRoleRequest( string name,
44  IDictionary<string, string> options)
45  {
46  this.name = name ?? "";
47  this.options = options ?? new Dictionary<string, string>();
48  } // end constructor
49 
50  } // end class CreateRoleRequest
51 
52 
53 
56  {
57 
60  public string name { get; set; }
61 
62  } // end class CreateRoleResponse
63 
64 
65 
66 
67 } // end namespace kinetica
CreateRoleRequest()
Constructs a CreateRoleRequest object with default parameters.
Definition: CreateRole.cs:32
CreateRoleRequest(string name, IDictionary< string, string > options)
Constructs a CreateRoleRequest object with the specified parameters.
Definition: CreateRole.cs:43
A set of results returned by /create/role.
Definition: CreateRole.cs:55
IDictionary< string, string > options
Optional parameters.
Definition: CreateRole.cs:27
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string name
Value of .
Definition: CreateRole.cs:60
A set of parameters for /create/role.
Definition: CreateRole.cs:17
string name
Name of the role to be created.
Definition: CreateRole.cs:24