Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
24  public IList<string> trigger_ids { get; set; } = new List<string>();
25 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public ShowTriggersRequest() { }
33 
42  public ShowTriggersRequest( IList<string> trigger_ids,
43  IDictionary<string, string> options = null)
44  {
45  this.trigger_ids = trigger_ids ?? new List<string>();
46  this.options = options ?? new Dictionary<string, string>();
47  } // end constructor
48 
49  } // end class ShowTriggersRequest
50 
51 
52 
55  {
56 
67  public IDictionary<string, IDictionary<string, string>> trigger_map { get; set; } = new Dictionary<string, IDictionary<string, string>>();
68 
69  } // end class ShowTriggersResponse
70 
71 
72 
73 
74 } // end namespace kinetica
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters.
Definition: ShowTriggers.cs:42
ShowTriggersRequest()
Constructs a ShowTriggersRequest object with default parameters.
Definition: ShowTriggers.cs:32
IDictionary< string, string > options
Optional parameters.
Definition: ShowTriggers.cs:27
A set of results returned by /show/triggers.
Definition: ShowTriggers.cs:54
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:24
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:67
A set of parameters for /show/triggers.
Definition: ShowTriggers.cs:18