Kinetica C# API  Version 6.1.0.0
AdminShowShards.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 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
26 
30 
36  public AdminShowShardsRequest( IDictionary<string, string> options = null)
37  {
38  this.options = options ?? new Dictionary<string, string>();
39  } // end constructor
40 
41  } // end class AdminShowShardsRequest
42 
43 
44 
49  {
50 
52  public long version { get; set; }
53 
55  public IList<int> rank { get; set; } = new List<int>();
56 
59  public IList<int> tom { get; set; } = new List<int>();
60 
61  } // end class AdminShowShardsResponse
62 
63 
64 
65 
66 } // end namespace kinetica
AdminShowShardsRequest()
Constructs an AdminShowShardsRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
AdminShowShardsRequest(IDictionary< string, string > options=null)
Constructs an AdminShowShardsRequest object with the specified parameters.
A set of parameters for Kinetica.adminShowShards(IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.adminShowShards(IDictionary<string, string>).