Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
UpdateRecordsBySeries.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 
23  {
24 
30  public string table_name { get; set; }
31 
36  public string world_table_name { get; set; }
37 
43  public string view_name { get; set; } = "";
44 
46  public IList<string> reserved { get; set; } = new List<string>();
47 
50  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
51 
52 
56 
83  string world_table_name,
84  string view_name = null,
85  IList<string> reserved = null,
86  IDictionary<string, string> options = null)
87  {
88  this.table_name = table_name ?? "";
89  this.world_table_name = world_table_name ?? "";
90  this.view_name = view_name ?? "";
91  this.reserved = reserved ?? new List<string>();
92  this.options = options ?? new Dictionary<string, string>();
93  } // end constructor
94 
95  } // end class UpdateRecordsBySeriesRequest
96 
97 
98 
103  {
104  public int count { get; set; }
105 
107  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
108 
109  } // end class UpdateRecordsBySeriesResponse
110 
111 
112 
113 
114 } // end namespace kinetica
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, in [schema_name.
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, in [schema_name.
string view_name
Name of the view containing the series (tracks) which have to be updated, in [schema_name.
UpdateRecordsBySeriesRequest()
Constructs an UpdateRecordsBySeriesRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.