Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
17  {
21  public string role { get; set; }
22 
26  public string member { get; set; }
27 
31  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
32 
35  public GrantRoleRequest() { }
36 
47  public GrantRoleRequest( string role,
48  string member,
49  IDictionary<string, string> options = null)
50  {
51  this.role = role ?? "";
52  this.member = member ?? "";
53  this.options = options ?? new Dictionary<string, string>();
54  } // end constructor
55  } // end class GrantRoleRequest
56 
61  {
64  public string role { get; set; }
65 
68  public string member { get; set; }
69 
71  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
72  } // end class GrantRoleResponse
73 } // end namespace kinetica
A set of results returned by Kinetica.grantRole.
Definition: GrantRole.cs:60
string member
Value of member.
Definition: GrantRole.cs:68
string member
Name of the user or role that will be granted membership in role.
Definition: GrantRole.cs:26
IDictionary< string, string > options
Optional parameters.
Definition: GrantRole.cs:31
IDictionary< string, string > info
Additional information.
Definition: GrantRole.cs:71
A set of parameters for Kinetica.grantRole.
Definition: GrantRole.cs:16
GrantRoleRequest()
Constructs a GrantRoleRequest object with default parameters.
Definition: GrantRole.cs:35
GrantRoleRequest(string role, string member, IDictionary< string, string > options=null)
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:21
string role
Value of role.
Definition: GrantRole.cs:64
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14