Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CreateTriggerByRange.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 
28  {
29 
33  public string request_id { get; set; }
34 
36  public IList<string> table_names { get; set; } = new List<string>();
37 
40  public string column_name { get; set; }
41 
44  public double min { get; set; }
45 
48  public double max { get; set; }
49 
51  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
52 
53 
57 
75  IList<string> table_names,
76  string column_name,
77  double min,
78  double max,
79  IDictionary<string, string> options = null)
80  {
81  this.request_id = request_id ?? "";
82  this.table_names = table_names ?? new List<string>();
83  this.column_name = column_name ?? "";
84  this.min = min;
85  this.max = max;
86  this.options = options ?? new Dictionary<string, string>();
87  } // end constructor
88 
89  } // end class CreateTriggerByRangeRequest
90 
91 
92 
96  {
97 
100  public string trigger_id { get; set; }
101 
102  } // end class CreateTriggerByRangeResponse
103 
104 
105 
106 
107 } // end namespace kinetica
A set of results returned by /create/trigger/byrange.
IList< string > table_names
Tables on which the trigger will be active.
IDictionary< string, string > options
Optional parameters.
double min
The lower bound (inclusive) for the trigger range.
CreateTriggerByRangeRequest(string request_id, IList< string > table_names, string column_name, double min, double max, IDictionary< string, string > options=null)
Constructs a CreateTriggerByRangeRequest object with the specified parameters.
string request_id
User-created ID for the trigger.
A set of parameters for /create/trigger/byrange.
CreateTriggerByRangeRequest()
Constructs a CreateTriggerByRangeRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
double max
The upper bound (inclusive) for the trigger range.
string column_name
Name of a numeric column_name on which the trigger is activated.