Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
27 
31 
38  public AdminShowShardsRequest( IDictionary<string, string> options = null)
39  {
40  this.options = options ?? new Dictionary<string, string>();
41  } // end constructor
42 
43  } // end class AdminShowShardsRequest
44 
45 
46 
51  {
52 
54  public long version { get; set; }
55 
57  public IList<int> rank { get; set; } = new List<int>();
58 
61  public IList<int> tom { get; set; } = new List<int>();
62 
64  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
65 
66  } // end class AdminShowShardsResponse
67 
68 
69 
70 
71 } // end namespace kinetica
AdminShowShardsRequest()
Constructs an AdminShowShardsRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
IList< int > tom
Array of toms to which the corresponding shard belongs.
long version
Current shard array version number.
AdminShowShardsRequest(IDictionary< string, string > options=null)
Constructs an AdminShowShardsRequest object with the specified parameters.
A set of parameters for Kinetica.adminShowShards(IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
IList< int > rank
Array of ranks indexed by the shard number.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.adminShowShards(IDictionary{string, string}).