Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateTableMonitor.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 
27  {
28 
31  public string table_name { get; set; }
32 
34  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
35 
36 
40 
49  IDictionary<string, string> options = null)
50  {
51  this.table_name = table_name ?? "";
52  this.options = options ?? new Dictionary<string, string>();
53  } // end constructor
54 
55  } // end class CreateTableMonitorRequest
56 
57 
58 
61  {
62 
65  public string topic_id { get; set; }
66 
69  public string table_name { get; set; }
70 
73  public string type_schema { get; set; }
74 
75  } // end class CreateTableMonitorResponse
76 
77 
78 
79 
80 } // end namespace kinetica
CreateTableMonitorRequest(string table_name, IDictionary< string, string > options=null)
Constructs a CreateTableMonitorRequest object with the specified parameters.
A set of results returned by /create/tablemonitor.
A set of parameters for /create/tablemonitor.
CreateTableMonitorRequest()
Constructs a CreateTableMonitorRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
string topic_id
The ZMQ topic ID to subscribe to for inserted records.
string table_name
Name of the table to monitor.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string type_schema
JSON Avro schema of the table, for use in decoding published records.