Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
18  {
23  public int num_alerts { get; set; }
24 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
33 
44  IDictionary<string, string> options = null)
45  {
46  this.num_alerts = num_alerts;
47  this.options = options ?? new Dictionary<string, string>();
48  } // end constructor
49  } // end class AdminShowAlertsRequest
50 
55  {
61  public IList<string> timestamps { get; set; } = new List<string>();
62 
68  public IList<string> types { get; set; } = new List<string>();
69 
75  public IList<IDictionary<string, string>> _params { get; set; } = new List<IDictionary<string, string>>();
76 
78  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
79  } // end class AdminShowAlertsResponse
80 } // 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.
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.
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.