Kinetica C# API  Version 6.0.1.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 
21  {
22 
25  public string table_name { get; set; }
26 
29  public string world_table_name { get; set; }
30 
33  public string view_name { get; set; } = "";
34  public IList<string> reserved { get; set; } = new List<string>();
35 
37  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
38 
39 
43 
57  string world_table_name,
58  string view_name = null,
59  IList<string> reserved = null,
60  IDictionary<string, string> options = null)
61  {
62  this.table_name = table_name ?? "";
63  this.world_table_name = world_table_name ?? "";
64  this.view_name = view_name ?? "";
65  this.reserved = reserved ?? new List<string>();
66  this.options = options ?? new Dictionary<string, string>();
67  } // end constructor
68 
69  } // end class UpdateRecordsBySeriesRequest
70 
71 
72 
76  {
77  public int count { get; set; }
78 
79  } // end class UpdateRecordsBySeriesResponse
80 
81 
82 
83 
84 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
A set of parameters for /update/records/byseries.
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 /update/records/byseries.
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
Definition: KineticaData.cs:14