7 using System.Collections.Generic;
75 public string name {
get; set; }
101 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
139 IDictionary<string, string>
options = null)
141 this.name = name ??
"";
142 this.options =
options ??
new Dictionary<string, string>();
157 public string name {
get; set; }
160 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string CAPACITY
Maximum size in bytes this tier may hold at once.
A set of results returned by Kinetica.alterTier(string,IDictionary{string, string}).
const string HIGH_WATERMARK
Threshold of usage of this tier's resource that, once exceeded, will trigger watermark-based eviction...
string name
Name of the tier to be altered.
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.
A set of parameters for Kinetica.alterTier(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
AlterTierRequest(string name, IDictionary< string, string > options=null)
Constructs an AlterTierRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
AlterTierRequest()
Constructs an AlterTierRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.