Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
22  {
23 
50  public struct Options
51  {
52 
69  public const string ACCEPTS_FAILOVER = "accepts_failover";
70  public const string TRUE = "true";
71  public const string FALSE = "false";
72  } // end struct Options
73 
74 
78  public string host { get; set; }
79 
104  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
105 
106 
110 
142  public AdminAlterHostRequest( string host,
143  IDictionary<string, string> options = null)
144  {
145  this.host = host ?? "";
146  this.options = options ?? new Dictionary<string, string>();
147  } // end constructor
148 
149  } // end class AdminAlterHostRequest
150 
151 
152 
157  {
158 
160  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
161 
162  } // end class AdminAlterHostResponse
163 
164 
165 
166 
167 } // end namespace kinetica
Optional parameters ACCEPTS_FAILOVER: If set to true, the host will accept processes (ranks...
A set of parameters for Kinetica.adminAlterHost(string,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters ACCEPTS_FAILOVER: If set to true, the host will accept processes (ranks...
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,IDictionary{string, string}).
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