Kinetica C# API  Version 7.1.10.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 
39  {
40 
44  public string request_id { get; set; }
45 
50  public IList<string> table_names { get; set; } = new List<string>();
51 
54  public string column_name { get; set; }
55 
58  public double min { get; set; }
59 
62  public double max { get; set; }
63 
66  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
67 
68 
72 
93  IList<string> table_names,
94  string column_name,
95  double min,
96  double max,
97  IDictionary<string, string> options = null)
98  {
99  this.request_id = request_id ?? "";
100  this.table_names = table_names ?? new List<string>();
101  this.column_name = column_name ?? "";
102  this.min = min;
103  this.max = max;
104  this.options = options ?? new Dictionary<string, string>();
105  } // end constructor
106 
107  } // end class CreateTriggerByRangeRequest
108 
109 
110 
115  {
116 
119  public string trigger_id { get; set; }
120 
122  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
123 
124  } // end class CreateTriggerByRangeResponse
125 
126 
127 
128 
129 } // 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, each in [schema_name.
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.