Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
39 {
43  public struct Options
44  {
58  public const string DRY_RUN = "dry_run";
59 
60  public const string TRUE = "true";
61  public const string FALSE = "false";
62  } // end struct Options
63 
76  public IList<string> hosts { get; set; } = new List<string>();
77 
100  public IList<IDictionary<string, string>> config_params { get; set; } = new List<IDictionary<string, string>>();
101 
122  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
123 
126  public AdminAddRanksRequest() { }
127 
186  public AdminAddRanksRequest( IList<string> hosts,
187  IList<IDictionary<string, string>> config_params,
188  IDictionary<string, string> options = null)
189  {
190  this.hosts = hosts ?? new List<string>();
191  this.config_params = config_params ?? new List<IDictionary<string, string>>();
192  this.options = options ?? new Dictionary<string, string>();
193  } // end constructor
194 } // end class AdminAddRanksRequest
195 
200 {
206  public IList<string> added_ranks { get; set; } = new List<string>();
207 
209  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
210 } // end class AdminAddRanksResponse
const string DRY_RUN
If TRUE, only validation checks will be performed.
AdminAddRanksRequest()
Constructs an AdminAddRanksRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
IList< string > added_ranks
The number assigned to each added rank, formatted as 'rankN', in the same order as the ranks in hosts...
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
IList< IDictionary< string, string > > config_params
Array of maps containing configuration parameters to apply to the new ranks found in hosts.
AdminAddRanksRequest(IList< string > hosts, IList< IDictionary< string, string >> config_params, IDictionary< string, string > options=null)
Constructs an AdminAddRanksRequest object with the specified parameters.
A set of parameters for Kinetica.adminAddRanks.
A set of results returned by Kinetica.adminAddRanks.
IList< string > hosts
Array of host IP addresses (matching a hostN.address from the gpudb.conf file), or host identifiers (...
A set of string constants for the parameter options.