Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
22  {
23 
40  public struct MonitorUpdatesMap
41  {
42 
47  public const string SCHEMA_NAME = "schema_name";
48  } // end struct MonitorUpdatesMap
49 
50 
52  public string topic_id { get; set; }
53 
68  public IDictionary<string, string> monitor_updates_map { get; set; } = new Dictionary<string, string>();
69 
71  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
72 
73 
77 
100  IDictionary<string, string> monitor_updates_map,
101  IDictionary<string, string> options)
102  {
103  this.topic_id = topic_id ?? "";
104  this.monitor_updates_map = monitor_updates_map ?? new Dictionary<string, string>();
105  this.options = options ?? new Dictionary<string, string>();
106  } // end constructor
107 
108  } // end class AlterTableMonitorRequest
109 
110 
111 
116  {
117 
120  public string topic_id { get; set; }
121 
123  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
124 
125  } // end class AlterTableMonitorResponse
126 
127 
128 
129 
130 } // end namespace kinetica
A set of parameters for Kinetica.alterTableMonitor(string,IDictionary{string, string},IDictionary{string, string}).
string topic_id
The topic ID returned by /create/tablemonitor.
IDictionary< string, string > monitor_updates_map
Map containing the properties of the table monitor to be updated.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
Map containing the properties of the table monitor to be updated.
A set of results returned by Kinetica.alterTableMonitor(string,IDictionary{string, string},IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AlterTableMonitorRequest(string topic_id, IDictionary< string, string > monitor_updates_map, IDictionary< string, string > options)
Constructs an AlterTableMonitorRequest object with the specified parameters.
AlterTableMonitorRequest()
Constructs an AlterTableMonitorRequest object with default parameters.
const string SCHEMA_NAME
Updates the schema name.