Kinetica C# API  Version 7.0.19.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 
34  {
35 
39  public string request_id { get; set; }
40 
42  public IList<string> table_names { get; set; } = new List<string>();
43 
46  public string column_name { get; set; }
47 
50  public double min { get; set; }
51 
54  public double max { get; set; }
55 
58  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
59 
60 
64 
83  IList<string> table_names,
84  string column_name,
85  double min,
86  double max,
87  IDictionary<string, string> options = null)
88  {
89  this.request_id = request_id ?? "";
90  this.table_names = table_names ?? new List<string>();
91  this.column_name = column_name ?? "";
92  this.min = min;
93  this.max = max;
94  this.options = options ?? new Dictionary<string, string>();
95  } // end constructor
96 
97  } // end class CreateTriggerByRangeRequest
98 
99 
100 
105  {
106 
109  public string trigger_id { get; set; }
110 
112  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
113 
114  } // end class CreateTriggerByRangeResponse
115 
116 
117 
118 
119 } // end namespace kinetica
A set of results returned by Kinetica.createTriggerByRange(string,IList{string},string,double,double,IDictionary{string, string}).
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 Kinetica.createTriggerByRange(string,IList{string},string,double,double,IDictionary{string, string}).
CreateTriggerByRangeRequest()
Constructs a CreateTriggerByRangeRequest object with default parameters.
IDictionary< string, string > info
Additional information.
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.