Kinetica C# API  Version 7.0.19.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 
20  {
21 
24  public string role { get; set; }
25 
29  public string member { get; set; }
30 
33  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
34 
35 
38  public GrantRoleRequest() { }
39 
51  public GrantRoleRequest( string role,
52  string member,
53  IDictionary<string, string> options = null)
54  {
55  this.role = role ?? "";
56  this.member = member ?? "";
57  this.options = options ?? new Dictionary<string, string>();
58  } // end constructor
59 
60  } // end class GrantRoleRequest
61 
62 
63 
68  {
69 
72  public string role { get; set; }
73 
76  public string member { get; set; }
77 
79  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
80 
81  } // end class GrantRoleResponse
82 
83 
84 
85 
86 } // end namespace kinetica
A set of results returned by Kinetica.grantRole(string,string,IDictionary{string, string})...
Definition: GrantRole.cs:67
string member
Value of .
Definition: GrantRole.cs:76
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:33
IDictionary< string, string > info
Additional information.
Definition: GrantRole.cs:79
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:38
GrantRoleRequest(string role, string member, IDictionary< string, string > options=null)
Constructs a GrantRoleRequest object with the specified parameters.
Definition: GrantRole.cs:51
string role
Name of the role in which membership will be granted.
Definition: GrantRole.cs:24
string role
Value of .
Definition: GrantRole.cs:72
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14