Kinetica C# API  Version 6.1.0.0
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 
10 
11 namespace kinetica
12 {
13 
37  {
38 
42  public string request_id { get; set; }
43 
46  public IList<string> table_names { get; set; } = new List<string>();
47 
50  public string x_column_name { get; set; }
51 
55  public IList<double> x_vector { get; set; } = new List<double>();
56 
59  public string y_column_name { get; set; }
60 
65  public IList<double> y_vector { get; set; } = new List<double>();
66 
68  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
69 
70 
74 
99  IList<string> table_names,
100  string x_column_name,
101  IList<double> x_vector,
102  string y_column_name,
103  IList<double> y_vector,
104  IDictionary<string, string> options = null)
105  {
106  this.request_id = request_id ?? "";
107  this.table_names = table_names ?? new List<string>();
108  this.x_column_name = x_column_name ?? "";
109  this.x_vector = x_vector ?? new List<double>();
110  this.y_column_name = y_column_name ?? "";
111  this.y_vector = y_vector ?? new List<double>();
112  this.options = options ?? new Dictionary<string, string>();
113  } // end constructor
114 
115  } // end class CreateTriggerByAreaRequest
116 
117 
118 
123  {
124 
127  public string trigger_id { get; set; }
128 
129  } // end class CreateTriggerByAreaResponse
130 
131 
132 
133 
134 } // end namespace kinetica
CreateTriggerByAreaRequest()
Constructs a CreateTriggerByAreaRequest object with default parameters.
IList< string > table_names
Names of the tables on which the trigger will be activated and maintained.
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.
A set of results returned by Kinetica.createTriggerByArea(string,IList<string>,string,IList<double>,string,IList<double>,IDictionary<string, string>).
string x_column_name
Name of a numeric column on which the trigger is activated.
IList< double > x_vector
The respective coordinate values for the region on which the trigger is activated.
IList< double > y_vector
The respective coordinate values for the region on which the trigger is activated.
A set of parameters for Kinetica.createTriggerByArea(string,IList<string>,string,IList<double>,string,IList<double>,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
string y_column_name
Name of a second numeric column on which the trigger is activated.
string request_id
User-created ID for the trigger.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14