Kinetica C# API  Version 6.2.0.1
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 
21  {
22 
27  public int num_alerts { get; set; }
28 
31  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
32 
33 
37 
50  IDictionary<string, string> options = null)
51  {
52  this.num_alerts = num_alerts;
53  this.options = options ?? new Dictionary<string, string>();
54  } // end constructor
55 
56  } // end class AdminShowAlertsRequest
57 
58 
59 
64  {
65 
70  public IList<string> timestamps { get; set; } = new List<string>();
71 
76  public IList<string> types { get; set; } = new List<string>();
77 
82  public IList<IDictionary<string, string>> _params { get; set; } = new List<IDictionary<string, string>>();
83 
84  } // end class AdminShowAlertsResponse
85 
86 
87 
88 
89 } // end namespace kinetica
int num_alerts
Number of most recent alerts to request.
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>).
AdminShowAlertsRequest()
Constructs an AdminShowAlertsRequest object with default parameters.