Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminRebalance.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 
19  {
20 
23 
26  public IList<string> table_names { get; set; } = new List<string>();
27 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
36  public AdminRebalanceRequest() { }
37 
45  public AdminRebalanceRequest( IList<string> table_names,
46  IDictionary<string, string> options = null)
47  {
48  this.table_names = table_names ?? new List<string>();
49  this.options = options ?? new Dictionary<string, string>();
50  } // end constructor
51 
52 
55  } // end class AdminRebalanceRequest
56 
57 
58 
62  {
63 
66 
69  public IList<string> table_names { get; set; } = new List<string>();
70 
73  public IList<string> message { get; set; } = new List<string>();
74 
75 
78  } // end class AdminRebalanceResponse
79 
80 
81 
82 
83 } // end namespace kinetica
A set of results returned by /admin/rebalance.
AdminRebalanceRequest()
Constructs an AdminRebalanceRequest object with default parameters.
AdminRebalanceRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs an AdminRebalanceRequest object with the specified parameters.
IDictionary< string, string > options
A set of parameters for /admin/rebalance.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14