7 using System.Collections.Generic;
67 public const string TRUE =
"true";
68 public const string FALSE =
"false";
84 public IList<string>
processes {
get; set; } =
new List<string>();
97 public IList<string>
destinations {
get; set; } =
new List<string>();
122 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
181 IDictionary<string, string>
options = null)
183 this.processes = processes ??
new List<string>();
184 this.destinations = destinations ??
new List<string>();
185 this.options =
options ??
new Dictionary<string, string>();
199 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
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