Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
17  public class ClearTableMonitorRequest : KineticaData
18  {
22  public struct Options
23  {
39  public const string KEEP_AUTOGENERATED_SINK = "keep_autogenerated_sink";
40 
41  public const string TRUE = "true";
42  public const string FALSE = "false";
43 
58  public const string CLEAR_ALL_REFERENCES = "clear_all_references";
59  } // end struct Options
60 
64  public string topic_id { get; set; }
65 
112  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
113 
117 
171  IDictionary<string, string> options = null)
172  {
173  this.topic_id = topic_id ?? "";
174  this.options = options ?? new Dictionary<string, string>();
175  } // end constructor
176  } // end class ClearTableMonitorRequest
177 
181  public class ClearTableMonitorResponse : KineticaData
182  {
185  public string topic_id { get; set; }
186 
188  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
189  } // end class ClearTableMonitorResponse
190 } // end namespace kinetica
const string KEEP_AUTOGENERATED_SINK
If TRUE, the auto-generated datasink associated with this monitor, if there is one,...
IDictionary< string, string > options
Optional parameters.
string topic_id
The topic ID returned by Kinetica.createTableMonitor.
string topic_id
Value of topic_id.
ClearTableMonitorRequest(string topic_id, IDictionary< string, string > options=null)
Constructs a ClearTableMonitorRequest object with the specified parameters.
const string CLEAR_ALL_REFERENCES
If TRUE, all references that share the same topic_id will be cleared.
ClearTableMonitorRequest()
Constructs a ClearTableMonitorRequest object with default parameters.
IDictionary< string, string > info
Additional information.