Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
42  public struct Options
43  {
44 
49  public const string COLLECTION_NAME = "collection_name";
50  } // end struct Options
51 
52 
55  public string table_name { get; set; }
56 
61  public string view_name { get; set; } = "";
62 
65  public string x_column_name { get; set; }
66 
70  public double min_x { get; set; }
71 
76  public double max_x { get; set; }
77 
80  public string y_column_name { get; set; }
81 
85  public double min_y { get; set; }
86 
90  public double max_y { get; set; }
91 
104  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
105 
106 
109  public FilterByBoxRequest() { }
110 
151  string view_name,
152  string x_column_name,
153  double min_x,
154  double max_x,
155  string y_column_name,
156  double min_y,
157  double max_y,
158  IDictionary<string, string> options = null)
159  {
160  this.table_name = table_name ?? "";
161  this.view_name = view_name ?? "";
162  this.x_column_name = x_column_name ?? "";
163  this.min_x = min_x;
164  this.max_x = max_x;
165  this.y_column_name = y_column_name ?? "";
166  this.min_y = min_y;
167  this.max_y = max_y;
168  this.options = options ?? new Dictionary<string, string>();
169  } // end constructor
170 
171  } // end class FilterByBoxRequest
172 
173 
174 
179  {
180 
182  public long count { get; set; }
183 
185  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
186 
187  } // end class FilterByBoxResponse
188 
189 
190 
191 
192 } // 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:61
double min_x
Lower bound for the column chosen by .
Definition: FilterByBox.cs:70
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:150
IDictionary< string, string > options
Optional parameters.
Definition: FilterByBox.cs:104
string table_name
Name of the table on which the bounding box operation will be performed.
Definition: FilterByBox.cs:55
double max_y
Upper bound for .
Definition: FilterByBox.cs:90
double min_y
Lower bound for .
Definition: FilterByBox.cs:85
string x_column_name
Name of the column on which to perform the bounding box query.
Definition: FilterByBox.cs:65
FilterByBoxRequest()
Constructs a FilterByBoxRequest object with default parameters.
Definition: FilterByBox.cs:109
long count
The number of records passing the box filter.
Definition: FilterByBox.cs:182
A set of results returned by Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary{string, string}).
Definition: FilterByBox.cs:178
double max_x
Upper bound for .
Definition: FilterByBox.cs:76
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
Definition: FilterByBox.cs:49
IDictionary< string, string > info
Additional information.
Definition: FilterByBox.cs:185
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:80
A set of parameters for Kinetica.filterByBox(string,string,string,double,double,string,double,double,IDictionary{string, string}).
Definition: FilterByBox.cs:25