Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
GrantRole.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 
22  public string role { get; set; }
23 
27  public string member { get; set; }
28 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
35  public GrantRoleRequest() { }
36 
47  public GrantRoleRequest( string role,
48  string member,
49  IDictionary<string, string> options)
50  {
51  this.role = role ?? "";
52  this.member = member ?? "";
53  this.options = options ?? new Dictionary<string, string>();
54  } // end constructor
55 
56  } // end class GrantRoleRequest
57 
58 
59 
62  {
63 
66  public string role { get; set; }
67 
70  public string member { get; set; }
71 
72  } // end class GrantRoleResponse
73 
74 
75 
76 
77 } // end namespace kinetica
A set of results returned by /grant/role.
Definition: GrantRole.cs:61
string member
Value of .
Definition: GrantRole.cs:70
string member
Name of the user or role that will be granted membership in .
Definition: GrantRole.cs:27
IDictionary< string, string > options
Optional parameters.
Definition: GrantRole.cs:30
A set of parameters for /grant/role.
Definition: GrantRole.cs:17
GrantRoleRequest()
Constructs a GrantRoleRequest object with default parameters.
Definition: GrantRole.cs:35
GrantRoleRequest(string role, string member, IDictionary< string, string > options)
Constructs a GrantRoleRequest object with the specified parameters.
Definition: GrantRole.cs:47
string role
Name of the role in which membership will be granted.
Definition: GrantRole.cs:22
string role
Value of .
Definition: GrantRole.cs:66
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14