Kinetica   C#   API  Version 7.2.3.1
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 
25 {
29  public struct Options
30  {
44  public const string DRY_RUN = "dry_run";
45 
46  public const string TRUE = "true";
47  public const string FALSE = "false";
48  } // end struct Options
49 
53  public string host { get; set; }
54 
75  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
76 
80 
107  public AdminRemoveHostRequest( string host,
108  IDictionary<string, string> options = null)
109  {
110  this.host = host ?? "";
111  this.options = options ?? new Dictionary<string, string>();
112  } // end constructor
113 } // end class AdminRemoveHostRequest
114 
119 {
121  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
122 } // end class AdminRemoveHostResponse
A set of string constants for the parameter options.
AdminRemoveHostRequest()
Constructs an AdminRemoveHostRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.adminRemoveHost.
AdminRemoveHostRequest(string host, IDictionary< string, string > options=null)
Constructs an AdminRemoveHostRequest object with the specified parameters.
string host
Identifies the host this applies to.
A set of results returned by Kinetica.adminRemoveHost.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
const string DRY_RUN
If set to TRUE, only validation checks will be performed.