Kinetica C# API  Version 7.1.10.0
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
GetRecordsBySeries.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 
36  {
37 
55  public struct Encoding
56  {
57  public const string BINARY = "binary";
58  public const string JSON = "json";
59  } // end struct Encoding
60 
61 
66  public string table_name { get; set; }
67 
77  public string world_table_name { get; set; }
78 
83  public int offset { get; set; } = 0;
84 
89  public int limit { get; set; } = 250;
90 
107  public string encoding { get; set; } = Encoding.BINARY;
108 
111  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
112 
113 
117 
148  string world_table_name,
149  int? offset = null,
150  int? limit = null,
151  IDictionary<string, string> options = null)
152  {
153  this.table_name = table_name ?? "";
154  this.world_table_name = world_table_name ?? "";
155  this.offset = offset ?? 0;
156  this.limit = limit ?? 250;
157  this.encoding = Encoding.BINARY;
158  this.options = options ?? new Dictionary<string, string>();
159  } // end constructor
160 
161 
208  string world_table_name,
209  int? offset = null,
210  int? limit = null,
211  string encoding = null,
212  IDictionary<string, string> options = null)
213  {
214  this.table_name = table_name ?? "";
215  this.world_table_name = world_table_name ?? "";
216  this.offset = offset ?? 0;
217  this.limit = limit ?? 250;
218  this.encoding = encoding ?? Encoding.BINARY;
219  this.options = options ?? new Dictionary<string, string>();
220  } // end full constructor
221 
222  } // end class GetRecordsBySeriesRequest
223 
224 
225 
230  {
231 
234  public IList<string> table_names { get; set; } = new List<string>();
235 
238  public IList<string> type_names { get; set; } = new List<string>();
239 
242  public IList<string> type_schemas { get; set; } = new List<string>();
243 
248  public IList<IList<byte[]>> list_records_binary { get; set; } = new List<IList<byte[]>>();
249 
254  public IList<IList<string>> list_records_json { get; set; } = new List<IList<string>>();
255 
257  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
258 
259  } // end class RawGetRecordsBySeriesResponse
260 
261 
262 
269  public class GetRecordsBySeriesResponse<T> : KineticaData
270  {
271 
274  public IList<string> table_names { get; set; } = new List<string>();
275 
278  public IList<string> type_names { get; set; } = new List<string>();
279 
282  public IList<string> type_schemas { get; set; } = new List<string>();
283 
288  public IList<IList<T>> data { get; set; } = new List<IList<T>>();
289 
291  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
292 
293  } // end class GetRecordsBySeriesResponse
294 
295 
296 
297 
298 } // end namespace kinetica
GetRecordsBySeriesRequest(string table_name, string world_table_name, int?offset=null, int?limit=null, IDictionary< string, string > options=null)
Constructs a GetRecordsBySeriesRequest object with the specified parameters.
Specifies the encoding for returned records; either binary or json.
A set of parameters for Kinetica.getRecordsBySeries{T}(string,string,int,int,IDictionary{string, string}).
IList< string > type_names
The type IDs (one per series/track) of the returned series/tracks.
string encoding
Specifies the encoding for returned records; either binary or json.
IDictionary< string, string > info
Additional information.
string table_name
Name of the table or view for which series/tracks will be fetched, in [schema_name.
int limit
A positive integer indicating the maximum number of series/tracks to be returned. ...
IList< IList< byte[]> > list_records_binary
If the encoding parameter of the request was &#39;binary&#39; then this list-of-lists contains the binary enc...
string world_table_name
Name of the table containing the complete series/track information to be returned for the tracks pres...
IList< IList< string > > list_records_json
If the encoding parameter of the request was &#39;json&#39; then this list-of-lists contains the json encoded...
A set of results returned by Kinetica.getRecordsBySeries{T}(string,string,int,int,IDictionary{string, string}).
int offset
A positive integer indicating the number of initial series/tracks to skip (useful for paging through ...
IList< string > table_names
The table name (one per series/track) of the returned series/tracks.
GetRecordsBySeriesRequest()
Constructs a GetRecordsBySeriesRequest object with default parameters.
GetRecordsBySeriesRequest(string table_name, string world_table_name, int?offset=null, int?limit=null, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsBySeriesRequest object with the specified parameters.
IList< string > type_schemas
The type schemas (one per series/track) of the returned series/tracks.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.