Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
72  public struct Options
73  {
74 
93  public const string KEEP_AUTOGENERATED_SINK = "keep_autogenerated_sink";
94  public const string TRUE = "true";
95  public const string FALSE = "false";
96 
112  public const string CLEAR_ALL_REFERENCES = "clear_all_references";
113  } // end struct Options
114 
115 
117  public string topic_id { get; set; }
118 
165  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
166 
167 
171 
225  IDictionary<string, string> options = null)
226  {
227  this.topic_id = topic_id ?? "";
228  this.options = options ?? new Dictionary<string, string>();
229  } // end constructor
230 
231  } // end class ClearTableMonitorRequest
232 
233 
234 
239  {
240 
243  public string topic_id { get; set; }
244 
246  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
247 
248  } // end class ClearTableMonitorResponse
249 
250 
251 
252 
253 } // end namespace kinetica
const string KEEP_AUTOGENERATED_SINK
If true, the auto-generated datasink associated with this monitor, if there is one, will be retained for further use.
A set of results returned by Kinetica.clearTableMonitor(string,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
const string CLEAR_ALL_REFERENCES
If true, all references that share the same topic_id will be cleared.
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.
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