Kinetica   C#   API  Version 7.2.3.0
AdminAddHost.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 {
16  {
20  public struct Options
21  {
35  public const string DRY_RUN = "dry_run";
36 
37  public const string TRUE = "true";
38  public const string FALSE = "false";
39 
54  public const string ACCEPTS_FAILOVER = "accepts_failover";
55 
61  public const string PUBLIC_ADDRESS = "public_address";
62 
69  public const string HOST_MANAGER_PUBLIC_URL = "host_manager_public_url";
70 
81  public const string RAM_LIMIT = "ram_limit";
82 
87  public const string GPUS = "gpus";
88  } // end struct Options
89 
95  public string host_address { get; set; }
96 
176  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
177 
180  public AdminAddHostRequest() { }
181 
269  IDictionary<string, string> options = null)
270  {
271  this.host_address = host_address ?? "";
272  this.options = options ?? new Dictionary<string, string>();
273  } // end constructor
274  } // end class AdminAddHostRequest
275 
280  {
286  public string added_host { get; set; }
287 
289  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
290  } // end class AdminAddHostResponse
291 } // end namespace kinetica
const string GPUS
Comma-delimited list of GPU indices (starting at 1) that are eligible for running worker processes.
Definition: AdminAddHost.cs:87
const string HOST_MANAGER_PUBLIC_URL
The publicly-accessible full path URL to the host manager on the host being added,...
Definition: AdminAddHost.cs:69
A set of parameters for Kinetica.adminAddHost.
Definition: AdminAddHost.cs:15
string added_host
Identifier for the newly added host, of the format 'hostN' where N is the integer identifier of that ...
const string DRY_RUN
If set to TRUE, only validation checks will be performed.
Definition: AdminAddHost.cs:35
const string ACCEPTS_FAILOVER
If set to TRUE, the host will accept processes (ranks, graph server, etc.) in the event of a failover...
Definition: AdminAddHost.cs:54
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.adminAddHost.
A set of string constants for the parameter options.
Definition: AdminAddHost.cs:20
string host_address
IP address of the host that will be added to the cluster.
Definition: AdminAddHost.cs:95
AdminAddHostRequest()
Constructs an AdminAddHostRequest object with default parameters.
AdminAddHostRequest(string host_address, IDictionary< string, string > options=null)
Constructs an AdminAddHostRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string PUBLIC_ADDRESS
The publicly-accessible IP address for the host being added, typically specified for clients using mu...
Definition: AdminAddHost.cs:61
const string RAM_LIMIT
The desired RAM limit for the host being added, i.e.
Definition: AdminAddHost.cs:81