Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterTier.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 
54  public struct Options
55  {
56 
59  public const string CAPACITY = "capacity";
60 
64  public const string HIGH_WATERMARK = "high_watermark";
65 
69  public const string LOW_WATERMARK = "low_watermark";
70  } // end struct Options
71 
72 
75  public string name { get; set; }
76 
101  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
102 
103 
106  public AlterTierRequest() { }
107 
138  public AlterTierRequest( string name,
139  IDictionary<string, string> options = null)
140  {
141  this.name = name ?? "";
142  this.options = options ?? new Dictionary<string, string>();
143  } // end constructor
144 
145  } // end class AlterTierRequest
146 
147 
148 
153  {
154 
157  public string name { get; set; }
158 
160  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
161 
162  } // end class AlterTierResponse
163 
164 
165 
166 
167 } // end namespace kinetica
const string CAPACITY
Maximum size in bytes this tier may hold at once.
Definition: AlterTier.cs:59
A set of results returned by Kinetica.alterTier(string,IDictionary{string, string}).
Definition: AlterTier.cs:152
string name
Value of .
Definition: AlterTier.cs:157
const string HIGH_WATERMARK
Threshold of usage of this tier&#39;s resource that, once exceeded, will trigger watermark-based eviction...
Definition: AlterTier.cs:64
string name
Name of the tier to be altered.
Definition: AlterTier.cs:75
const string LOW_WATERMARK
Threshold of resource usage that, once fallen below after crossing the high_watermark, will cease watermark-based eviction from this tier.
Definition: AlterTier.cs:69
A set of parameters for Kinetica.alterTier(string,IDictionary{string, string}).
Definition: AlterTier.cs:25
Optional parameters.
Definition: AlterTier.cs:54
IDictionary< string, string > info
Additional information.
Definition: AlterTier.cs:160
AlterTierRequest(string name, IDictionary< string, string > options=null)
Constructs an AlterTierRequest object with the specified parameters.
Definition: AlterTier.cs:138
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AlterTierRequest()
Constructs an AlterTierRequest object with default parameters.
Definition: AlterTier.cs:106
IDictionary< string, string > options
Optional parameters.
Definition: AlterTier.cs:101