Kinetica C# API  Version 6.1.0.0
RevokeRole.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 RevokeRoleRequest() { }
38 
49  public RevokeRoleRequest( 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 RevokeRoleRequest
59 
60 
61 
66  {
67 
70  public string role { get; set; }
71 
74  public string member { get; set; }
75 
76  } // end class RevokeRoleResponse
77 
78 
79 
80 
81 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: RevokeRole.cs:32
string member
Name of the user or role that will be revoked membership in .
Definition: RevokeRole.cs:29
A set of results returned by Kinetica.revokeRole(string,string,IDictionary<string, string>).
Definition: RevokeRole.cs:65
string role
Name of the role in which membership will be revoked.
Definition: RevokeRole.cs:24
A set of parameters for Kinetica.revokeRole(string,string,IDictionary<string, string>).
Definition: RevokeRole.cs:19
RevokeRoleRequest()
Constructs a RevokeRoleRequest object with default parameters.
Definition: RevokeRole.cs:37
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
RevokeRoleRequest(string role, string member, IDictionary< string, string > options)
Constructs a RevokeRoleRequest object with the specified parameters.
Definition: RevokeRole.cs:49