Kinetica C# API  Version 6.1.0.0
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 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
30 
33  public CreateRoleRequest() { }
34 
44  public CreateRoleRequest( string name,
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 CreateRoleRequest
52 
53 
54 
59  {
60 
63  public string name { get; set; }
64 
65  } // end class CreateRoleResponse
66 
67 
68 
69 
70 } // end namespace kinetica
CreateRoleRequest()
Constructs a CreateRoleRequest object with default parameters.
Definition: CreateRole.cs:33
CreateRoleRequest(string name, IDictionary< string, string > options)
Constructs a CreateRoleRequest object with the specified parameters.
Definition: CreateRole.cs:44
A set of results returned by Kinetica.createRole(string,IDictionary<string, string>).
Definition: CreateRole.cs:58
IDictionary< string, string > options
Optional parameters.
Definition: CreateRole.cs:28
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
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