Kinetica C# API  Version 6.1.0.0
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 
20  {
21 
24  public string role { get; set; }
25 
29  public string member { get; set; }
30 
32  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
33 
34 
37  public GrantRoleRequest() { }
38 
49  public GrantRoleRequest( string role,
50  string member,
51  IDictionary<string, string> options)
52  {
53  this.role = role ?? "";
54  this.member = member ?? "";
55  this.options = options ?? new Dictionary<string, string>();
56  } // end constructor
57 
58  } // end class GrantRoleRequest
59 
60 
61 
66  {
67 
70  public string role { get; set; }
71 
74  public string member { get; set; }
75 
76  } // end class GrantRoleResponse
77 
78 
79 
80 
81 } // end namespace kinetica
A set of results returned by Kinetica.grantRole(string,string,IDictionary<string, string>)...
Definition: GrantRole.cs:65
string member
Name of the user or role that will be granted membership in .
Definition: GrantRole.cs:29
IDictionary< string, string > options
Optional parameters.
Definition: GrantRole.cs:32
A set of parameters for Kinetica.grantRole(string,string,IDictionary<string, string>).
Definition: GrantRole.cs:19
GrantRoleRequest()
Constructs a GrantRoleRequest object with default parameters.
Definition: GrantRole.cs:37
GrantRoleRequest(string role, string member, IDictionary< string, string > options)
Constructs a GrantRoleRequest object with the specified parameters.
Definition: GrantRole.cs:49
string role
Name of the role in which membership will be granted.
Definition: GrantRole.cs:24
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14