Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByRange.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 
31  {
32 
47  public struct Options
48  {
49 
54  public const string COLLECTION_NAME = "collection_name";
55  } // end struct Options
56 
57 
60  public string table_name { get; set; }
61 
66  public string view_name { get; set; } = "";
67 
70  public string column_name { get; set; }
71 
73  public double lower_bound { get; set; }
74 
76  public double upper_bound { get; set; }
77 
90  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
91 
92 
95  public FilterByRangeRequest() { }
96 
127  string view_name,
128  string column_name,
129  double lower_bound,
130  double upper_bound,
131  IDictionary<string, string> options = null)
132  {
133  this.table_name = table_name ?? "";
134  this.view_name = view_name ?? "";
135  this.column_name = column_name ?? "";
136  this.lower_bound = lower_bound;
137  this.upper_bound = upper_bound;
138  this.options = options ?? new Dictionary<string, string>();
139  } // end constructor
140 
141  } // end class FilterByRangeRequest
142 
143 
144 
149  {
150 
153  public long count { get; set; }
154 
156  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
157 
158  } // end class FilterByRangeResponse
159 
160 
161 
162 
163 } // end namespace kinetica
string column_name
Name of a column on which the operation would be applied.
IDictionary< string, string > options
Optional parameters.
string view_name
If provided, then this will be the name of the view containing the results.
long count
The number of records passing the range filter.
IDictionary< string, string > info
Additional information.
double lower_bound
Value of the lower bound (inclusive).
A set of parameters for Kinetica.filterByRange(string,string,string,double,double,IDictionary{string, string}).
A set of results returned by Kinetica.filterByRange(string,string,string,double,double,IDictionary{string, string}).
string table_name
Name of the table on which the filter by range operation will be performed.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
FilterByRangeRequest(string table_name, string view_name, string column_name, double lower_bound, double upper_bound, IDictionary< string, string > options=null)
Constructs a FilterByRangeRequest object with the specified parameters.
const string COLLECTION_NAME
Name of a collection which is to contain the newly created view.
FilterByRangeRequest()
Constructs a FilterByRangeRequest object with default parameters.
double upper_bound
Value of the upper bound (inclusive).