Kinetica C# API  Version 7.0.19.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 
22  {
23 
26  public string table_name { get; set; }
27 
30  public string world_table_name { get; set; }
31 
34  public string view_name { get; set; } = "";
35 
37  public IList<string> reserved { get; set; } = new List<string>();
38 
41  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
42 
43 
47 
64  string world_table_name,
65  string view_name = null,
66  IList<string> reserved = null,
67  IDictionary<string, string> options = null)
68  {
69  this.table_name = table_name ?? "";
70  this.world_table_name = world_table_name ?? "";
71  this.view_name = view_name ?? "";
72  this.reserved = reserved ?? new List<string>();
73  this.options = options ?? new Dictionary<string, string>();
74  } // end constructor
75 
76  } // end class UpdateRecordsBySeriesRequest
77 
78 
79 
84  {
85  public int count { get; set; }
86 
88  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
89 
90  } // end class UpdateRecordsBySeriesResponse
91 
92 
93 
94 
95 } // 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.
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
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
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.