Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminShowAlerts.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 
20  {
21 
26  public int num_alerts { get; set; }
27 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
36 
49  IDictionary<string, string> options = null)
50  {
51  this.num_alerts = num_alerts;
52  this.options = options ?? new Dictionary<string, string>();
53  } // end constructor
54 
55  } // end class AdminShowAlertsRequest
56 
57 
58 
63  {
64 
69  public IList<string> timestamps { get; set; } = new List<string>();
70 
75  public IList<string> types { get; set; } = new List<string>();
76 
81  public IList<IDictionary<string, string>> _params { get; set; } = new List<IDictionary<string, string>>();
82 
84  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
85 
86  } // end class AdminShowAlertsResponse
87 
88 
89 
90 
91 } // end namespace kinetica
IList< IDictionary< string, string > > _params
Parameters for each alert, sorted from most recent to least recent.
int num_alerts
Number of most recent alerts to request.
IList< string > timestamps
Timestamp for when the alert occurred, sorted from most recent to least recent.
AdminShowAlertsRequest(int num_alerts, IDictionary< string, string > options=null)
Constructs an AdminShowAlertsRequest object with the specified parameters.
A set of parameters for Kinetica.adminShowAlerts(int,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.adminShowAlerts(int,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
IList< string > types
Type of system alert, sorted from most recent to least recent.
AdminShowAlertsRequest()
Constructs an AdminShowAlertsRequest object with default parameters.