Kinetica C# API  Version 6.1.0.0
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 
38  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
39 
40 
44 
53  IDictionary<string, string> options = null)
54  {
55  this.table_name = table_name ?? "";
56  this.options = options ?? new Dictionary<string, string>();
57  } // end constructor
58 
59  } // end class CreateTableMonitorRequest
60 
61 
62 
67  {
68 
71  public string topic_id { get; set; }
72 
75  public string table_name { get; set; }
76 
79  public string type_schema { get; set; }
80 
81  } // end class CreateTableMonitorResponse
82 
83 
84 
85 
86 } // 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