Kinetica   C#   API  Version 7.2.3.1
CreateTriggerByArea.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 
32 {
36  public string request_id { get; set; }
37 
42  public IList<string> table_names { get; set; } = new List<string>();
43 
47  public string x_column_name { get; set; }
48 
53  public IList<double> x_vector { get; set; } = new List<double>();
54 
58  public string y_column_name { get; set; }
59 
64  public IList<double> y_vector { get; set; } = new List<double>();
65 
69  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
70 
74 
101  IList<string> table_names,
102  string x_column_name,
103  IList<double> x_vector,
104  string y_column_name,
105  IList<double> y_vector,
106  IDictionary<string, string> options = null)
107  {
108  this.request_id = request_id ?? "";
109  this.table_names = table_names ?? new List<string>();
110  this.x_column_name = x_column_name ?? "";
111  this.x_vector = x_vector ?? new List<double>();
112  this.y_column_name = y_column_name ?? "";
113  this.y_vector = y_vector ?? new List<double>();
114  this.options = options ?? new Dictionary<string, string>();
115  } // end constructor
116 } // end class CreateTriggerByAreaRequest
117 
122 {
126  public string trigger_id { get; set; }
127 
129  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
130 } // end class CreateTriggerByAreaResponse
IList< double > y_vector
The respective coordinate values for the region on which the trigger is activated.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string request_id
User-created ID for the trigger.
IDictionary< string, string > options
Optional parameters.
string x_column_name
Name of a numeric column on which the trigger is activated.
A set of parameters for Kinetica.createTriggerByArea.
string y_column_name
Name of a second numeric column on which the trigger is activated.
IDictionary< string, string > info
Additional information.
CreateTriggerByAreaRequest()
Constructs a CreateTriggerByAreaRequest object with default parameters.
CreateTriggerByAreaRequest(string request_id, IList< string > table_names, string x_column_name, IList< double > x_vector, string y_column_name, IList< double > y_vector, IDictionary< string, string > options=null)
Constructs a CreateTriggerByAreaRequest object with the specified parameters.
string trigger_id
Value of request_id.
IList< double > x_vector
The respective coordinate values for the region on which the trigger is activated.
IList< string > table_names
Names of the tables on which the trigger will be activated and maintained, each in [schema_name.
A set of results returned by Kinetica.createTriggerByArea.