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>>();
76 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
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.
IDictionary< string, IDictionary< string, string > > trigger_map
This dictionary contains (key, value) pairs of (trigger ID, information map/dictionary) where the key...
A set of parameters for Kinetica.showTriggers(IList{string},IDictionary{string, string}).