7 using System.Collections.Generic;
18 public class UpdateRecordsBySeriesRequest : KineticaData
38 public string view_name {
get;
set; } =
"";
41 public IList<string>
reserved {
get;
set; } =
new List<string>();
46 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
79 IDictionary<string, string>
options =
null)
92 public class UpdateRecordsBySeriesResponse : KineticaData
94 public int count {
get;
set; }
97 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
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.
IList< string > reserved
The default value is an empty List.
IDictionary< string, string > options
Optional parameters.
UpdateRecordsBySeriesRequest()
Constructs an UpdateRecordsBySeriesRequest object with default parameters.
IDictionary< string, string > info
Additional information.
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.