Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
48  public struct Options
49  {
50 
66  public const string DRY_RUN = "dry_run";
67  public const string TRUE = "true";
68  public const string FALSE = "false";
69  } // end struct Options
70 
71 
84  public IList<string> processes { get; set; } = new List<string>();
85 
97  public IList<string> destinations { get; set; } = new List<string>();
98 
122  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
123 
124 
128 
179  public AdminSwitchoverRequest( IList<string> processes,
180  IList<string> destinations,
181  IDictionary<string, string> options = null)
182  {
183  this.processes = processes ?? new List<string>();
184  this.destinations = destinations ?? new List<string>();
185  this.options = options ?? new Dictionary<string, string>();
186  } // end constructor
187 
188  } // end class AdminSwitchoverRequest
189 
190 
191 
196  {
197 
199  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
200 
201  } // end class AdminSwitchoverResponse
202 
203 
204 
205 
206 } // 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(IList{string},IList{string},IDictionary{string, string}).
AdminSwitchoverRequest()
Constructs an AdminSwitchoverRequest object with default parameters.
IDictionary< string, string > info
Additional information.
IList< string > destinations
Indicates to which host to switch over each corresponding process given in .
A set of parameters for Kinetica.adminSwitchover(IList{string},IList{string},IDictionary{string, string}).
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