Kinetica   C#   API  Version 7.2.3.0
ShowTriggers.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 namespace kinetica
10 {
17  {
22  public IList<string> trigger_ids { get; set; } = new List<string>();
23 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
31  public ShowTriggersRequest() { }
32 
41  public ShowTriggersRequest( IList<string> trigger_ids,
42  IDictionary<string, string> options = null)
43  {
44  this.trigger_ids = trigger_ids ?? new List<string>();
45  this.options = options ?? new Dictionary<string, string>();
46  } // end constructor
47  } // end class ShowTriggersRequest
48 
53  {
65  public IDictionary<string, IDictionary<string, string>> trigger_map { get; set; } = new Dictionary<string, IDictionary<string, string>>();
66 
68  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
69  } // end class ShowTriggersResponse
70 } // end namespace kinetica
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters.
Definition: ShowTriggers.cs:41
IDictionary< string, string > info
Additional information.
Definition: ShowTriggers.cs:68
ShowTriggersRequest()
Constructs a ShowTriggersRequest object with default parameters.
Definition: ShowTriggers.cs:31
IDictionary< string, string > options
Optional parameters.
Definition: ShowTriggers.cs:27
A set of results returned by Kinetica.showTriggers.
Definition: ShowTriggers.cs:52
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > trigger_ids
List of IDs of the triggers whose information is to be retrieved.
Definition: ShowTriggers.cs:22
IDictionary< string, IDictionary< string, string > > trigger_map
This dictionary contains (key, value) pairs of (trigger ID, information map/dictionary) where the key...
Definition: ShowTriggers.cs:65
A set of parameters for Kinetica.showTriggers.
Definition: ShowTriggers.cs:16