Kinetica   C#   API  Version 7.2.3.0
AdminRemoveHost.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 {
26  {
30  public struct Options
31  {
45  public const string DRY_RUN = "dry_run";
46 
47  public const string TRUE = "true";
48  public const string FALSE = "false";
49  } // end struct Options
50 
55  public string host { get; set; }
56 
78  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
79 
83 
111  public AdminRemoveHostRequest( string host,
112  IDictionary<string, string> options = null)
113  {
114  this.host = host ?? "";
115  this.options = options ?? new Dictionary<string, string>();
116  } // end constructor
117  } // end class AdminRemoveHostRequest
118 
123  {
125  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
126  } // end class AdminRemoveHostResponse
127 } // end namespace kinetica
A set of results returned by Kinetica.adminRemoveHost.
const string DRY_RUN
If set to TRUE, only validation checks will be performed.
string host
Identifies the host this applies to.
A set of string constants for the parameter options.
A set of parameters for Kinetica.adminRemoveHost.
AdminRemoveHostRequest()
Constructs an AdminRemoveHostRequest object with default parameters.
AdminRemoveHostRequest(string host, IDictionary< string, string > options=null)
Constructs an AdminRemoveHostRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.