Kinetica C# API  Version 6.1.0.0
ShowSecurity.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 
22  {
23 
27  public IList<string> names { get; set; } = new List<string>();
28 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
35  public ShowSecurityRequest() { }
36 
45  public ShowSecurityRequest( IList<string> names,
46  IDictionary<string, string> options)
47  {
48  this.names = names ?? new List<string>();
49  this.options = options ?? new Dictionary<string, string>();
50  } // end constructor
51 
52  } // end class ShowSecurityRequest
53 
54 
55 
60  {
61 
85  public struct Types
86  {
87 
90  public const string INTERNAL_USER = "internal_user";
91 
94  public const string EXTERNAL_USER = "external_user";
95 
97  public const string ROLE = "role";
98  } // end struct Types
99 
100 
122  public IDictionary<string, string> types { get; set; } = new Dictionary<string, string>();
123 
126  public IDictionary<string, IList<string>> roles { get; set; } = new Dictionary<string, IList<string>>();
127 
130  public IDictionary<string, IList<IDictionary<string, string>>> permissions { get; set; } = new Dictionary<string, IList<IDictionary<string, string>>>();
131 
132  } // end class ShowSecurityResponse
133 
134 
135 
136 
137 } // end namespace kinetica
ShowSecurityRequest()
Constructs a ShowSecurityRequest object with default parameters.
Definition: ShowSecurity.cs:35
Map of user/role name to the type of that user/role.
Definition: ShowSecurity.cs:85
ShowSecurityRequest(IList< string > names, IDictionary< string, string > options)
Constructs a ShowSecurityRequest object with the specified parameters.
Definition: ShowSecurity.cs:45
IList< string > names
A list of names of users and/or roles about which security information is requested.
Definition: ShowSecurity.cs:27
A set of parameters for Kinetica.showSecurity(IList<string>,IDictionary<string, string>).
Definition: ShowSecurity.cs:21
A set of results returned by Kinetica.showSecurity(IList<string>,IDictionary<string, string>).
Definition: ShowSecurity.cs:59
IDictionary< string, string > options
Optional parameters.
Definition: ShowSecurity.cs:30
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14