Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminAddRanks.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 
49  {
50 
76  public struct Options
77  {
78 
94  public const string DRY_RUN = "dry_run";
95  public const string TRUE = "true";
96  public const string FALSE = "false";
97  } // end struct Options
98 
99 
113  public IList<string> hosts { get; set; } = new List<string>();
114 
146  public IList<IDictionary<string, string>> config_params { get; set; } = new List<IDictionary<string, string>>();
147 
171  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
172 
173 
176  public AdminAddRanksRequest() { }
177 
249  public AdminAddRanksRequest( IList<string> hosts,
250  IList<IDictionary<string, string>> config_params,
251  IDictionary<string, string> options = null)
252  {
253  this.hosts = hosts ?? new List<string>();
254  this.config_params = config_params ?? new List<IDictionary<string, string>>();
255  this.options = options ?? new Dictionary<string, string>();
256  } // end constructor
257 
258  } // end class AdminAddRanksRequest
259 
260 
261 
266  {
267 
272  public IList<string> added_ranks { get; set; } = new List<string>();
273 
275  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
276 
277  } // end class AdminAddRanksResponse
278 
279 
280 
281 
282 } // end namespace kinetica
IList< IDictionary< string, string > > config_params
Array of maps containing configuration parameters to apply to the new ranks found in ...
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.
const string DRY_RUN
If true, only validation checks will be performed.
IDictionary< string, string > options
Optional parameters.
IList< string > added_ranks
The number assigned to each added rank, formatted as &#39;rankN&#39;, in the same order as the ranks in and ...
A set of parameters for Kinetica.adminAddRanks(IList{string},IList{IDictionary{string, string}},IDictionary{string, string}).
IList< string > hosts
Array of host IP addresses (matching a hostN.address from the gpudb.conf file), or host identifiers (...
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
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.