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 {
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 
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,...
A set of results returned by Kinetica.clearTableMonitor.
IDictionary< string, string > options
Optional parameters.
const string CLEAR_ALL_REFERENCES
If TRUE, all references that share the same topic_id will be cleared.
string topic_id
Value of topic_id.
IDictionary< string, string > info
Additional information.
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.
A set of string constants for the parameter options.
string topic_id
The topic ID returned by Kinetica.createTableMonitor.
A set of parameters for Kinetica.clearTableMonitor.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14