Kinetica C# API  Version 6.1.0.0
FilterByBox.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 
26  {
27 
30  public string table_name { get; set; }
31 
36  public string view_name { get; set; } = "";
37 
40  public string x_column_name { get; set; }
41 
45  public double min_x { get; set; }
46 
51  public double max_x { get; set; }
52 
55  public string y_column_name { get; set; }
56 
60  public double min_y { get; set; }
61 
65  public double max_y { get; set; }
66 
68  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
69 
70 
73  public FilterByBoxRequest() { }
74 
104  string view_name,
105  string x_column_name,
106  double min_x,
107  double max_x,
108  string y_column_name,
109  double min_y,
110  double max_y,
111  IDictionary<string, string> options = null)
112  {
113  this.table_name = table_name ?? "";
114  this.view_name = view_name ?? "";
115  this.x_column_name = x_column_name ?? "";
116  this.min_x = min_x;
117  this.max_x = max_x;
118  this.y_column_name = y_column_name ?? "";
119  this.min_y = min_y;
120  this.max_y = max_y;
121  this.options = options ?? new Dictionary<string, string>();
122  } // end constructor
123 
124  } // end class FilterByBoxRequest
125 
126 
127 
132  {
133 
135  public long count { get; set; }
136 
137  } // end class FilterByBoxResponse
138 
139 
140 
141 
142 } // end namespace kinetica
string view_name
Optional name of the result view that will be created containing the results of the query...
Definition: FilterByBox.cs:36
double min_x
Lower bound for the column chosen by .
Definition: FilterByBox.cs:45
FilterByBoxRequest(string table_name, string view_name, string x_column_name, double min_x, double max_x, string y_column_name, double min_y, double max_y, IDictionary< string, string > options=null)
Constructs a FilterByBoxRequest object with the specified parameters.
Definition: FilterByBox.cs:103
IDictionary< string, string > options
Optional parameters.
Definition: FilterByBox.cs:68
string table_name
Name of the table on which the bounding box operation will be performed.
Definition: FilterByBox.cs:30
double max_y
Upper bound for .
Definition: FilterByBox.cs:65
double min_y
Lower bound for .
Definition: FilterByBox.cs:60
string x_column_name
Name of the column on which to perform the bounding box query.
Definition: FilterByBox.cs:40
FilterByBoxRequest()
Constructs a FilterByBoxRequest object with default parameters.
Definition: FilterByBox.cs:73
A set of results returned by Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary<string, string>).
Definition: FilterByBox.cs:131
double max_x
Upper bound for .
Definition: FilterByBox.cs:51
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string y_column_name
Name of a column on which to perform the bounding box query.
Definition: FilterByBox.cs:55
A set of parameters for Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary<string, string>).
Definition: FilterByBox.cs:25