Kinetica C# API  Version 6.1.0.0
ClearTableMonitor.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 
22  {
23 
25  public string topic_id { get; set; }
26 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
30 
34 
43  IDictionary<string, string> options = null)
44  {
45  this.topic_id = topic_id ?? "";
46  this.options = options ?? new Dictionary<string, string>();
47  } // end constructor
48 
49  } // end class ClearTableMonitorRequest
50 
51 
52 
57  {
58 
61  public string topic_id { get; set; }
62 
63  } // end class ClearTableMonitorResponse
64 
65 
66 
67 
68 } // end namespace kinetica
A set of results returned by Kinetica.clearTableMonitor(string,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
ClearTableMonitorRequest(string topic_id, IDictionary< string, string > options=null)
Constructs a ClearTableMonitorRequest object with the specified parameters.
ClearTableMonitorRequest()
Constructs a ClearTableMonitorRequest object with default parameters.
string topic_id
The topic ID returned by /create/tablemonitor.
A set of parameters for Kinetica.clearTableMonitor(string,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14