7 using System.Collections.Generic;
22 public IList<string>
trigger_ids {
get;
set; } =
new List<string>();
27 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
42 IDictionary<string, string>
options =
null)
44 this.trigger_ids =
trigger_ids ??
new List<string>();
65 public IDictionary<string, IDictionary<string, string>>
trigger_map {
get;
set; } =
new Dictionary<string, IDictionary<string, string>>();
68 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.
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.