Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
21 {
25  public struct Options
26  {
29  public const string TIERS = "tiers";
30 
38  public const string EXPRESSION = "expression";
39 
80  public const string ORDER_BY = "order_by";
81 
82  public const string SIZE = "size";
83  public const string ID = "id";
84  public const string PRIORITY = "priority";
85  public const string TIER = "tier";
86  public const string EVICTABLE = "evictable";
87  public const string LOCKED = "locked";
88  public const string PIN_COUNT = "pin_count";
89  public const string RAM_EVICTIONS = "ram_evictions";
90  public const string PERSIST_EVICTIONS = "persist_evictions";
91  public const string OWNER_RESOURCE_GROUP = "owner_resource_group";
92 
101  public const string LIMIT = "limit";
102 
106  public const string TABLE_NAMES = "table_names";
107  } // end struct Options
108 
190  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
191 
195 
280  public ShowResourceObjectsRequest( IDictionary<string, string> options = null)
281  {
282  this.options = options ?? new Dictionary<string, string>();
283  } // end constructor
284 } // end class ShowResourceObjectsRequest
285 
290 {
295  public IDictionary<string, string> rank_objects { get; set; } = new Dictionary<string, string>();
296 
298  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
299 } // end class ShowResourceObjectsResponse
const string TIERS
Comma-separated list of tiers to query, leave blank for all tiers.
const string EXPRESSION
An expression to filter the returned objects.
ShowResourceObjectsRequest(IDictionary< string, string > options=null)
Constructs a ShowResourceObjectsRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string TABLE_NAMES
Comma-separated list of tables to restrict the results to.
ShowResourceObjectsRequest()
Constructs a ShowResourceObjectsRequest object with default parameters.
A set of results returned by Kinetica.showResourceObjects.
A set of parameters for Kinetica.showResourceObjects.
A set of string constants for the parameter options.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > rank_objects
Tier usage across ranks.
const string ORDER_BY
Single column to be sorted by as well as the sort direction, e.g., 'size asc'.
IDictionary< string, string > options
Optional parameters.
const string LIMIT
An integer indicating the maximum number of results to be returned, per rank, or (-1) to indicate tha...