7 using System.Collections.Generic;
45 public const string ADMIN =
"admin";
54 public string name {
get; set; }
81 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
119 IDictionary<string, string>
options = null)
121 this.name = name ??
"";
122 this.permission = permission ??
"";
123 this.datasource_name = datasource_name ??
"";
124 this.options =
options ??
new Dictionary<string, string>();
139 public string name {
get; set; }
151 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
string permission
Value of .
const string CONNECT
Connect access on the given data source
string datasource_name
Name of the data source on which the permission will be revoked.
Permission to revoke from the user or role Supported values: ADMIN: Admin access on the given data so...
RevokePermissionDatasourceRequest(string name, string permission, string datasource_name, IDictionary< string, string > options=null)
Constructs a RevokePermissionDatasourceRequest object with the specified parameters.
A set of parameters for Kinetica.revokePermissionDatasource(string,string,string,IDictionary{string, string}).
const string ADMIN
Admin access on the given data source
IDictionary< string, string > info
Additional information.
string permission
Permission to revoke from the user or role Supported values: ADMIN: Admin access on the given data so...
string name
Name of the user or role from which the permission will be revoked.
string datasource_name
Value of .
IDictionary< string, string > options
Optional parameters.
RevokePermissionDatasourceRequest()
Constructs a RevokePermissionDatasourceRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
A set of results returned by Kinetica.revokePermissionDatasource(string,string,string,IDictionary{string, string}).