Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
29 {
33  public string request_id { get; set; }
34 
39  public IList<string> table_names { get; set; } = new List<string>();
40 
43  public string column_name { get; set; }
44 
46  public double min { get; set; }
47 
49  public double max { get; set; }
50 
54  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
55 
59 
79  IList<string> table_names,
80  string column_name,
81  double min,
82  double max,
83  IDictionary<string, string> options = null)
84  {
85  this.request_id = request_id ?? "";
86  this.table_names = table_names ?? new List<string>();
87  this.column_name = column_name ?? "";
88  this.min = min;
89  this.max = max;
90  this.options = options ?? new Dictionary<string, string>();
91  } // end constructor
92 } // end class CreateTriggerByRangeRequest
93 
98 {
102  public string trigger_id { get; set; }
103 
105  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
106 } // end class CreateTriggerByRangeResponse
double max
The upper bound (inclusive) for the trigger range.
A set of parameters for Kinetica.createTriggerByRange.
CreateTriggerByRangeRequest()
Constructs a CreateTriggerByRangeRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
double min
The lower bound (inclusive) for the trigger range.
IList< string > table_names
Tables on which the trigger will be active, each in [schema_name.
string request_id
User-created ID for the trigger.
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 trigger_id
Value of request_id.
string column_name
Name of a numeric column_name on which the trigger is activated.
A set of results returned by Kinetica.createTriggerByRange.
IDictionary< string, string > options
Optional parameters.