Kinetica   C#   API  Version 7.2.3.1
AlterTableMonitor.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 {
23  public struct MonitorUpdatesMap
24  {
31  public const string SCHEMA_NAME = "schema_name";
32 
37  public const string MAX_CONSECUTIVE_FAILURES = "max_consecutive_failures";
38 
52  public const string NOTIFICATIONS = "notifications";
53 
54  public const string RESUME = "resume";
55  public const string SUSPEND = "suspend";
56  } // end struct MonitorUpdatesMap
57 
61  public string topic_id { get; set; }
62 
104  public IDictionary<string, string> monitor_updates_map { get; set; } = new Dictionary<string, string>();
105 
109  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
110 
114 
165  IDictionary<string, string> monitor_updates_map,
166  IDictionary<string, string> options = null)
167  {
168  this.topic_id = topic_id ?? "";
169  this.monitor_updates_map = monitor_updates_map ?? new Dictionary<string, string>();
170  this.options = options ?? new Dictionary<string, string>();
171  } // end constructor
172 } // end class AlterTableMonitorRequest
173 
178 {
181  public string topic_id { get; set; }
182 
184  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
185 } // end class AlterTableMonitorResponse
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > monitor_updates_map
Map containing the properties of the table monitor to be updated.
A set of parameters for Kinetica.alterTableMonitor.
const string NOTIFICATIONS
Updates the state of the monitor.
string topic_id
Value of topic_id.
string topic_id
The topic ID returned by Kinetica.createTableMonitor.
const string MAX_CONSECUTIVE_FAILURES
Updates the maximum number of consecutive failures before suspending the stream.
A set of results returned by Kinetica.alterTableMonitor.
AlterTableMonitorRequest(string topic_id, IDictionary< string, string > monitor_updates_map, IDictionary< string, string > options=null)
Constructs an AlterTableMonitorRequest object with the specified parameters.
A set of string constants for the parameter monitor_updates_map.
IDictionary< string, string > info
Additional information.
AlterTableMonitorRequest()
Constructs an AlterTableMonitorRequest object with default parameters.
const string SCHEMA_NAME
Updates the schema name.
IDictionary< string, string > options
Optional parameters.