7 using System.Collections.Generic;
30 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
49 IDictionary<string, string>
options = null)
52 this.options =
options ??
new Dictionary<string, string>();
69 public IList<string>
timestamps {
get; set; } =
new List<string>();
75 public IList<string>
types {
get; set; } =
new List<string>();
81 public IList<IDictionary<string, string>>
_params {
get; set; } =
new List<IDictionary<string, string>>();
84 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
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
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.