Kinetica C# API  Version 6.2.0.1
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 
31  {
32 
35  public string table_name { get; set; }
36 
39  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
40 
41 
45 
55  IDictionary<string, string> options = null)
56  {
57  this.table_name = table_name ?? "";
58  this.options = options ?? new Dictionary<string, string>();
59  } // end constructor
60 
61  } // end class CreateTableMonitorRequest
62 
63 
64 
69  {
70 
73  public string topic_id { get; set; }
74 
77  public string table_name { get; set; }
78 
81  public string type_schema { get; set; }
82 
83  } // end class CreateTableMonitorResponse
84 
85 
86 
87 
88 } // 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 Kinetica.createTableMonitor(string,IDictionary<string, string>).
A set of parameters for Kinetica.createTableMonitor(string,IDictionary<string, string>).
CreateTableMonitorRequest()
Constructs a CreateTableMonitorRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
string table_name
Name of the table to monitor.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14