Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
19  {
23  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
24 
28 
34  public AdminShowShardsRequest( IDictionary<string, string> options = null)
35  {
36  this.options = options ?? new Dictionary<string, string>();
37  } // end constructor
38  } // end class AdminShowShardsRequest
39 
44  {
46  public long version { get; set; }
47 
49  public IList<int> rank { get; set; } = new List<int>();
50 
53  public IList<int> tom { get; set; } = new List<int>();
54 
56  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
57  } // end class AdminShowShardsResponse
58 } // 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 > 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.