7 using System.Collections.Generic;
37 public IList<string>
reserved {
get;
set; } =
new List<string>();
41 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
67 IDictionary<string, string>
options = null)
69 this.table_name = table_name ??
"";
70 this.world_table_name = world_table_name ??
"";
73 this.
options = options ??
new Dictionary<string, string>();
85 public int count {
get;
set; }
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.updateRecordsBySeries(string,string,string,IList<string>,IDictionary<string, string>).
IList< string > reserved
The default value is an empty List.
string world_table_name
Name of the table containing the complete series (track) information.
UpdateRecordsBySeriesRequest(string table_name, string world_table_name, string view_name=null, IList< string > reserved=null, IDictionary< string, string > options=null)
Constructs an UpdateRecordsBySeriesRequest object with the specified parameters.
A set of results returned by Kinetica.updateRecordsBySeries(string,string,string,IList<string>,IDictionary<string, string>).
string table_name
Name of the view on which the update operation will be performed.
string view_name
Optional name of the view containing the series (tracks) which have to be updated.
UpdateRecordsBySeriesRequest()
Constructs an UpdateRecordsBySeriesRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica