7 using System.Collections.Generic;
35 public const string BINARY =
"binary";
36 public const string JSON =
"json";
61 public const string TRUE =
"true";
62 public const string FALSE =
"false";
74 public long offset {
get; set; } = 0;
79 public long limit {
get; set; } = 10000;
97 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
132 IDictionary<string, string>
options = null)
134 this.table_name = table_name ??
"";
138 this.options =
options ??
new Dictionary<string, string>();
174 IDictionary<string, string>
options = null)
176 this.table_name = table_name ??
"";
180 this.options =
options ??
new Dictionary<string, string>();
202 public IList<string>
type_names {
get; set; } =
new List<string>();
217 public IList<string>
record_ids {
get; set; } =
new List<string>();
233 public string table_name {
get; set; }
241 public IList<string> type_names {
get; set; } =
new List<string>();
246 public IList<T> data {
get; set; } =
new List<T>();
251 public IList<string> record_ids {
get; set; } =
new List<string>();
const string RETURN_RECORD_IDS
If 'true' then return the internal record ID along with each returned record.
IList< string > record_ids
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID ...
string encoding
Specifies the encoding for returned records; either 'binary' or 'json'.
IList< string > type_names
The type IDs of the corresponding records in <member name="records_binary"> or <member name="records_...
GetRecordsFromCollectionRequest(string table_name, long offset=0, long limit=10000, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
IDictionary< string, string > options
return_record_ids If 'true' then return the internal record ID along with each returned record...
GetRecordsFromCollectionRequest()
Constructs a GetRecordsFromCollectionRequest object with default parameters.
Specifies the encoding for returned records; either 'binary' or 'json'.
IList< string > records_json
If the encoding parameter of the request was 'json', then this list contains the JSON encoded records...
GetRecordsFromCollectionRequest(string table_name, long offset=0, long limit=10000, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
string table_name
Name of the collection or table from which records are to be retrieved.
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...
IList< byte[]> records_binary
If the encoding parameter of the request was 'binary' then this list contains the binary encoded reco...
A set of parameters for /get/records/fromcollection.
return_record_ids If 'true' then return the internal record ID along with each returned record...
A set of results returned by /get/records/fromcollection.
KineticaData - class to help with Avro Encoding for Kinetica
long limit
A positive integer indicating the maximum number of results to be returned, or END_OF_SET (-9999) to ...
string table_name
Value of .