7 using System.Collections.Generic;
91 public const string TRUE =
"true";
92 public const string FALSE =
"false";
100 public IList<string>
hosts {
get; set; } =
new List<string>();
111 public IList<IDictionary<string, string>>
config_params {
get; set; } =
new List<IDictionary<string, string>>();
136 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
187 IDictionary<string, string>
options = null)
189 this.hosts = hosts ??
new List<string>();
190 this.config_params =
config_params ??
new List<IDictionary<string, string>>();
191 this.options =
options ??
new Dictionary<string, string>();
214 public IList<string>
results {
get; set; } =
new List<string>();
217 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IList< IDictionary< string, string > > config_params
Configuration parameters to apply to the new ranks, e.g., which GPU to use.
A set of results returned by Kinetica.adminAddRanks(IList{string},IList{IDictionary{string, string}},IDictionary{string, string}).
AdminAddRanksRequest()
Constructs an AdminAddRanksRequest object with default parameters.
IList< string > results
Text description of the result of each rank being added.
const string DRY_RUN
If true, only validation checks will be performed.
IDictionary< string, string > options
Optional parameters.
IList< int > added_ranks
The number assigned to each newly added rank, in the same order as the ranks in the ...
A set of parameters for Kinetica.adminAddRanks(IList{string},IList{IDictionary{string, string}},IDictionary{string, string}).
IList< string > hosts
The IP address of each rank being added to the cluster.
KineticaData - class to help with Avro Encoding for Kinetica
AdminAddRanksRequest(IList< string > hosts, IList< IDictionary< string, string >> config_params, IDictionary< string, string > options=null)
Constructs an AdminAddRanksRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.