Kinetica   C#   API  Version 7.2.3.1
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 
111  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
112 
116 
169  IDictionary<string, string> options = null)
170  {
171  this.topic_id = topic_id ?? "";
172  this.options = options ?? new Dictionary<string, string>();
173  } // end constructor
174 } // end class ClearTableMonitorRequest
175 
180 {
183  public string topic_id { get; set; }
184 
186  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
187 } // end class ClearTableMonitorResponse
A set of results returned by Kinetica.clearTableMonitor.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
ClearTableMonitorRequest(string topic_id, IDictionary< string, string > options=null)
Constructs a ClearTableMonitorRequest object with the specified parameters.
A set of string constants for the parameter options.
const string KEEP_AUTOGENERATED_SINK
If TRUE, the auto-generated datasink associated with this monitor, if there is one,...
IDictionary< string, string > info
Additional information.
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.
string topic_id
The topic ID returned by Kinetica.createTableMonitor.
A set of parameters for Kinetica.clearTableMonitor.
string topic_id
Value of topic_id.