Kinetica   C#   API  Version 7.2.3.0
AdminSwitchover.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  {
37  public const string DRY_RUN = "dry_run";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41  } // end struct Options
42 
53  public IList<string> processes { get; set; } = new List<string>();
54 
64  public IList<string> destinations { get; set; } = new List<string>();
65 
87  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
88 
92 
135  public AdminSwitchoverRequest( IList<string> processes,
136  IList<string> destinations,
137  IDictionary<string, string> options = null)
138  {
139  this.processes = processes ?? new List<string>();
140  this.destinations = destinations ?? new List<string>();
141  this.options = options ?? new Dictionary<string, string>();
142  } // end constructor
143  } // end class AdminSwitchoverRequest
144 
149  {
151  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
152  } // end class AdminSwitchoverResponse
153 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
const string DRY_RUN
If set to TRUE, only validation checks will be performed.
AdminSwitchoverRequest(IList< string > processes, IList< string > destinations, IDictionary< string, string > options=null)
Constructs an AdminSwitchoverRequest object with the specified parameters.
A set of results returned by Kinetica.adminSwitchover.
AdminSwitchoverRequest()
Constructs an AdminSwitchoverRequest object with default parameters.
A set of string constants for the parameter options.
IDictionary< string, string > info
Additional information.
IList< string > destinations
Indicates to which host to switch over each corresponding process given in processes.
A set of parameters for Kinetica.adminSwitchover.
IList< string > processes
Indicates the process identifier to switch over to another host.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14