Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
26  public IList<string> trigger_ids { get; set; } = new List<string>();
27 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
34  public ShowTriggersRequest() { }
35 
44  public ShowTriggersRequest( IList<string> trigger_ids,
45  IDictionary<string, string> options = null)
46  {
47  this.trigger_ids = trigger_ids ?? new List<string>();
48  this.options = options ?? new Dictionary<string, string>();
49  } // end constructor
50 
51  } // end class ShowTriggersRequest
52 
53 
54 
59  {
60 
71  public IDictionary<string, IDictionary<string, string>> trigger_map { get; set; } = new Dictionary<string, IDictionary<string, string>>();
72 
73  } // end class ShowTriggersResponse
74 
75 
76 
77 
78 } // end namespace kinetica
ShowTriggersRequest(IList< string > trigger_ids, IDictionary< string, string > options=null)
Constructs a ShowTriggersRequest object with the specified parameters.
Definition: ShowTriggers.cs:44
ShowTriggersRequest()
Constructs a ShowTriggersRequest object with default parameters.
Definition: ShowTriggers.cs:34
IDictionary< string, string > options
Optional parameters.
Definition: ShowTriggers.cs:29
A set of results returned by Kinetica.showTriggers(IList<string>,IDictionary<string, string>).
Definition: ShowTriggers.cs:58
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
A set of parameters for Kinetica.showTriggers(IList<string>,IDictionary<string, string>).
Definition: ShowTriggers.cs:20