Kinetica C# API  Version 6.2.0.1
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 
19  {
20 
25  public string name { get; set; }
26 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
34  public CreateRoleRequest() { }
35 
46  public CreateRoleRequest( string name,
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 CreateRoleRequest
54 
55 
56 
61  {
62 
65  public string name { get; set; }
66 
67  } // end class CreateRoleResponse
68 
69 
70 
71 
72 } // end namespace kinetica
CreateRoleRequest()
Constructs a CreateRoleRequest object with default parameters.
Definition: CreateRole.cs:34
A set of results returned by Kinetica.createRole(string,IDictionary<string, string>).
Definition: CreateRole.cs:60
IDictionary< string, string > options
Optional parameters.
Definition: CreateRole.cs:29
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
CreateRoleRequest(string name, IDictionary< string, string > options=null)
Constructs a CreateRoleRequest object with the specified parameters.
Definition: CreateRole.cs:46
A set of parameters for Kinetica.createRole(string,IDictionary<string, string>).
Definition: CreateRole.cs:18
string name
Name of the role to be created.
Definition: CreateRole.cs:25