7 using System.Collections.Generic;
26 public IList<string>
trigger_ids {
get;
set; } =
new List<string>();
30 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
47 IDictionary<string, string>
options = null)
49 this.trigger_ids = trigger_ids ??
new List<string>();
50 this.
options = options ??
new Dictionary<string, string>();
73 public IDictionary<string, IDictionary<string, string>> trigger_map {
get;
set; } =
new Dictionary<string, IDictionary<string, string>>();
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters.
ShowTriggersRequest()
Constructs a ShowTriggersRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.showTriggers(IList<string>,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
IList< string > trigger_ids
List of IDs of the triggers whose information is to be retrieved.
A set of parameters for Kinetica.showTriggers(IList<string>,IDictionary<string, string>).