Kinetica C# API  Version 6.0.1.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 
24  {
25 
28  public string table_name { get; set; }
29 
34  public string view_name { get; set; } = "";
35 
39  public string x_column_name { get; set; }
40 
44  public double min_x { get; set; }
45 
50  public double max_x { get; set; }
51 
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 
106  string view_name,
107  string x_column_name,
108  double min_x,
109  double max_x,
110  string y_column_name,
111  double min_y,
112  double max_y,
113  IDictionary<string, string> options = null)
114  {
115  this.table_name = table_name ?? "";
116  this.view_name = view_name ?? "";
117  this.x_column_name = x_column_name ?? "";
118  this.min_x = min_x;
119  this.max_x = max_x;
120  this.y_column_name = y_column_name ?? "";
121  this.min_y = min_y;
122  this.max_y = max_y;
123  this.options = options ?? new Dictionary<string, string>();
124  } // end constructor
125 
126  } // end class FilterByBoxRequest
127 
128 
129 
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:34
double min_x
Lower bound for the column chosen by .
Definition: FilterByBox.cs:44
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:105
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:28
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:39
FilterByBoxRequest()
Constructs a FilterByBoxRequest object with default parameters.
Definition: FilterByBox.cs:73
long count
The number of records passing the box filter.
Definition: FilterByBox.cs:135
A set of results returned by /filter/bybox.
Definition: FilterByBox.cs:131
double max_x
Upper bound for .
Definition: FilterByBox.cs:50
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 /filter/bybox.
Definition: FilterByBox.cs:23