7 using System.Collections.Generic;
42 public IList<string>
table_names {
get;
set; } =
new List<string>();
50 public double min {
get;
set; }
54 public double max {
get;
set; }
58 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
87 IDictionary<string, string>
options = null)
89 this.request_id = request_id ??
"";
90 this.table_names = table_names ??
new List<string>();
91 this.column_name = column_name ??
"";
109 public string trigger_id {
get;
set; }
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.
KineticaData - class to help with Avro Encoding for Kinetica
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.