Kinetica C# API  Version 7.0.19.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 
21  {
22 
26  public IList<string> trigger_ids { get; set; } = new List<string>();
27 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
35  public ShowTriggersRequest() { }
36 
46  public ShowTriggersRequest( IList<string> trigger_ids,
47  IDictionary<string, string> options = null)
48  {
49  this.trigger_ids = trigger_ids ?? new List<string>();
50  this.options = options ?? new Dictionary<string, string>();
51  } // end constructor
52 
53  } // end class ShowTriggersRequest
54 
55 
56 
61  {
62 
73  public IDictionary<string, IDictionary<string, string>> trigger_map { get; set; } = new Dictionary<string, IDictionary<string, string>>();
74 
76  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
77 
78  } // end class ShowTriggersResponse
79 
80 
81 
82 
83 } // end namespace kinetica
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters.
Definition: ShowTriggers.cs:46
IDictionary< string, string > info
Additional information.
Definition: ShowTriggers.cs:76
ShowTriggersRequest()
Constructs a ShowTriggersRequest object with default parameters.
Definition: ShowTriggers.cs:35
IDictionary< string, string > options
Optional parameters.
Definition: ShowTriggers.cs:30
A set of results returned by Kinetica.showTriggers(IList{string},IDictionary{string, string}).
Definition: ShowTriggers.cs:60
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:26
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:73
A set of parameters for Kinetica.showTriggers(IList{string},IDictionary{string, string}).
Definition: ShowTriggers.cs:20