7 using System.Collections.Generic;
24 public class AlterTierRequest : KineticaData
33 public const string CAPACITY =
"capacity";
70 public const string PERSIST =
"persist";
72 public const string TRUE =
"true";
73 public const string FALSE =
"false";
79 public const string RANK =
"rank";
85 public string name {
get;
set; }
146 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
218 IDictionary<string, string>
options =
null)
220 this.name =
name ??
"";
228 public class AlterTierResponse : KineticaData
232 public string name {
get;
set; }
235 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string name
Name of the tier to be altered.
const string RANK
Apply the requested change only to a specific rank.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
const string PERSIST
If TRUE the system configuration will be written to disk upon successful application of this request.
string name
Value of name.
const string LOW_WATERMARK
Threshold of resource usage that once fallen below after crossing the HIGH_WATERMARK,...
AlterTierRequest(string name, IDictionary< string, string > options=null)
Constructs an AlterTierRequest object with the specified parameters.
const string WAIT_TIMEOUT
Timeout in seconds for reading from or writing to this resource.
const string CAPACITY
Maximum size in bytes this tier may hold at once, per rank.
AlterTierRequest()
Constructs an AlterTierRequest object with default parameters.
const string HIGH_WATERMARK
Threshold of usage of this tier's resource that once exceeded, will trigger watermark-based eviction ...