Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
RevokePermissionProc.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 
33  public struct Permission
34  {
35 
37  public const string PROC_EXECUTE = "proc_execute";
38  } // end struct Permission
39 
40 
43  public string name { get; set; }
44 
54  public string permission { get; set; }
55 
59  public string proc_name { get; set; }
60 
63  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
64 
65 
69 
93  string permission,
94  string proc_name,
95  IDictionary<string, string> options = null)
96  {
97  this.name = name ?? "";
98  this.permission = permission ?? "";
99  this.proc_name = proc_name ?? "";
100  this.options = options ?? new Dictionary<string, string>();
101  } // end constructor
102 
103  } // end class RevokePermissionProcRequest
104 
105 
106 
111  {
112 
115  public string name { get; set; }
116 
119  public string permission { get; set; }
120 
123  public string proc_name { get; set; }
124 
126  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
127 
128  } // end class RevokePermissionProcResponse
129 
130 
131 
132 
133 } // end namespace kinetica
string name
Name of the user or role from which the permission will be revoked.
RevokePermissionProcRequest()
Constructs a RevokePermissionProcRequest object with default parameters.
string permission
Permission to revoke from the user or role.
Permission to revoke from the user or role.
A set of results returned by Kinetica.revokePermissionProc(string,string,string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
RevokePermissionProcRequest(string name, string permission, string proc_name, IDictionary< string, string > options=null)
Constructs a RevokePermissionProcRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.revokePermissionProc(string,string,string,IDictionary{string, string}).
const string PROC_EXECUTE
Execute access to the proc.
string proc_name
Name of the proc to which the permission grants access.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14