Kinetica   C#   API  Version 7.2.3.0
AdminAlterHost.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 {
18  {
22  public struct Options
23  {
38  public const string ACCEPTS_FAILOVER = "accepts_failover";
39 
40  public const string TRUE = "true";
41  public const string FALSE = "false";
42  } // end struct Options
43 
48  public string host { get; set; }
49 
73  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
74 
77  public AdminAlterHostRequest() { }
78 
108  public AdminAlterHostRequest( string host,
109  IDictionary<string, string> options = null)
110  {
111  this.host = host ?? "";
112  this.options = options ?? new Dictionary<string, string>();
113  } // end constructor
114  } // end class AdminAlterHostRequest
115 
120  {
122  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
123  } // end class AdminAlterHostResponse
124 } // end namespace kinetica
A set of string constants for the parameter options.
A set of parameters for Kinetica.adminAlterHost.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
const string ACCEPTS_FAILOVER
If set to TRUE, the host will accept processes (ranks, graph server, etc.) in the event of a failover...
A set of results returned by Kinetica.adminAlterHost.
string host
Identifies the host this applies to.
AdminAlterHostRequest(string host, IDictionary< string, string > options=null)
Constructs an AdminAlterHostRequest object with the specified parameters.
AdminAlterHostRequest()
Constructs an AdminAlterHostRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14