Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowResourceGroups.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 
68  public struct Options
69  {
70 
86  public const string SHOW_DEFAULT_VALUES = "show_default_values";
87  public const string TRUE = "true";
88  public const string FALSE = "false";
89 
105  public const string SHOW_DEFAULT_GROUP = "show_default_group";
106  } // end struct Options
107 
108 
111  public IList<string> names { get; set; } = new List<string>();
112 
155  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
156 
157 
161 
210  public ShowResourceGroupsRequest( IList<string> names,
211  IDictionary<string, string> options = null)
212  {
213  this.names = names ?? new List<string>();
214  this.options = options ?? new Dictionary<string, string>();
215  } // end constructor
216 
217  } // end class ShowResourceGroupsRequest
218 
219 
220 
225  {
226 
228  public IList<IDictionary<string, string>> groups { get; set; } = new List<IDictionary<string, string>>();
229 
231  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
232 
233  } // end class ShowResourceGroupsResponse
234 
235 
236 
237 
238 } // end namespace kinetica
ShowResourceGroupsRequest(IList< string > names, IDictionary< string, string > options=null)
Constructs a ShowResourceGroupsRequest object with the specified parameters.
IList< string > names
List of names of groups to be shown.
IDictionary< string, string > info
Additional information.
IList< IDictionary< string, string > > groups
Map of resource group information.
A set of results returned by Kinetica.showResourceGroups(IList{string},IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
const string SHOW_DEFAULT_GROUP
If true include the default resource group in the response.
const string SHOW_DEFAULT_VALUES
If true include values of fields that are based on the default resource group.
ShowResourceGroupsRequest()
Constructs a ShowResourceGroupsRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.showResourceGroups(IList{string},IDictionary{string, string}).