Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowResourceObjects.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 
26  {
27 
104  public struct Options
105  {
106 
109  public const string TIERS = "tiers";
110 
119  public const string EXPRESSION = "expression";
120 
150  public const string ORDER_BY = "order_by";
151  public const string SIZE = "size";
152  public const string ID = "id";
153  public const string PRIORITY = "priority";
154  public const string TIER = "tier";
155  public const string EVICTABLE = "evictable";
156  public const string OWNER_RESOURCE_GROUP = "owner_resource_group";
157 
167  public const string LIMIT = "limit";
168 
171  public const string TABLE_NAMES = "table_names";
172  } // end struct Options
173 
174 
249  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
250 
251 
255 
334  public ShowResourceObjectsRequest( IDictionary<string, string> options = null)
335  {
336  this.options = options ?? new Dictionary<string, string>();
337  } // end constructor
338 
339  } // end class ShowResourceObjectsRequest
340 
341 
342 
347  {
348 
352  public IDictionary<string, string> rank_objects { get; set; } = new Dictionary<string, string>();
353 
355  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
356 
357  } // end class ShowResourceObjectsResponse
358 
359 
360 
361 
362 } // end namespace kinetica
A set of results returned by Kinetica.showResourceObjects(IDictionary{string, string}).
A set of parameters for Kinetica.showResourceObjects(IDictionary{string, string}).
const string TIERS
Comma-separated list of tiers to query, leave blank for all tiers.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > rank_objects
Tier usage across ranks.
const string EXPRESSION
An expression to filter the returned objects.
const string TABLE_NAMES
Comma-separated list of tables to restrict the results to.
const string LIMIT
An integer indicating the maximum number of results to be returned, per rank, or (-1) to indicate tha...
ShowResourceObjectsRequest()
Constructs a ShowResourceObjectsRequest object with default parameters.
const string ORDER_BY
Single column to be sorted by as well as the sort direction, e.g., &#39;size asc&#39;.
ShowResourceObjectsRequest(IDictionary< string, string > options=null)
Constructs a ShowResourceObjectsRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14