7 using System.Collections.Generic;
24 public string role {
get;
set; }
32 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
51 IDictionary<string, string>
options)
53 this.role = role ??
"";
54 this.member = member ??
"";
55 this.options = options ??
new Dictionary<string, string>();
70 public string role {
get;
set; }
IDictionary< string, string > options
Optional parameters.
string member
Name of the user or role that will be revoked membership in .
A set of results returned by Kinetica.revokeRole(string,string,IDictionary<string, string>).
string role
Name of the role in which membership will be revoked.
A set of parameters for Kinetica.revokeRole(string,string,IDictionary<string, string>).
RevokeRoleRequest()
Constructs a RevokeRoleRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
RevokeRoleRequest(string role, string member, IDictionary< string, string > options)
Constructs a RevokeRoleRequest object with the specified parameters.