Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
18 {
22  public struct Options
23  {
37  public const string SHOW_DEFAULT_VALUES = "show_default_values";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41 
55  public const string SHOW_DEFAULT_GROUP = "show_default_group";
56 
70  public const string SHOW_TIER_USAGE = "show_tier_usage";
71  } // end struct Options
72 
76  public IList<string> names { get; set; } = new List<string>();
77 
137  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
138 
142 
207  public ShowResourceGroupsRequest( IList<string> names,
208  IDictionary<string, string> options = null)
209  {
210  this.names = names ?? new List<string>();
211  this.options = options ?? new Dictionary<string, string>();
212  } // end constructor
213 } // end class ShowResourceGroupsRequest
214 
219 {
221  public IList<IDictionary<string, string>> groups { get; set; } = new List<IDictionary<string, string>>();
222 
227  public IDictionary<string, string> rank_usage { get; set; } = new Dictionary<string, string>();
228 
230  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
231 } // end class ShowResourceGroupsResponse
ShowResourceGroupsRequest(IList< string > names, IDictionary< string, string > options=null)
Constructs a ShowResourceGroupsRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< IDictionary< string, string > > groups
Map of resource group information.
const string SHOW_DEFAULT_VALUES
If TRUE include values of fields that are based on the default resource group.
const string SHOW_DEFAULT_GROUP
If TRUE include the default and system resource groups in the response.
IList< string > names
List of names of groups to be shown.
A set of parameters for Kinetica.showResourceGroups.
IDictionary< string, string > rank_usage
Tier usage across ranks.
ShowResourceGroupsRequest()
Constructs a ShowResourceGroupsRequest object with default parameters.
A set of results returned by Kinetica.showResourceGroups.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
const string SHOW_TIER_USAGE
If TRUE include the resource group usage on the worker ranks in the response.
A set of string constants for the parameter options.