Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
FilterByValue.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 
36  {
37 
77  public struct Options
78  {
79 
98  public const string CREATE_TEMP_TABLE = "create_temp_table";
99  public const string TRUE = "true";
100  public const string FALSE = "false";
101 
108  public const string COLLECTION_NAME = "collection_name";
109  } // end struct Options
110 
111 
116  public string table_name { get; set; }
117 
125  public string view_name { get; set; } = "";
126 
129  public bool is_string { get; set; }
130 
133  public double _value { get; set; } = 0;
134 
137  public string value_str { get; set; } = "";
138 
141  public string column_name { get; set; }
142 
180  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
181 
182 
185  public FilterByValueRequest() { }
186 
249  string view_name,
250  bool is_string,
251  double? _value,
252  string value_str,
253  string column_name,
254  IDictionary<string, string> options = null)
255  {
256  this.table_name = table_name ?? "";
257  this.view_name = view_name ?? "";
258  this.is_string = is_string;
259  this._value = _value ?? 0;
260  this.value_str = value_str ?? "";
261  this.column_name = column_name ?? "";
262  this.options = options ?? new Dictionary<string, string>();
263  } // end constructor
264 
265  } // end class FilterByValueRequest
266 
267 
268 
273  {
274 
287  public struct Info
288  {
289 
292  public const string QUALIFIED_VIEW_NAME = "qualified_view_name";
293  } // end struct Info
294 
295 
298  public long count { get; set; }
299 
310  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
311 
312  } // end class FilterByValueResponse
313 
314 
315 
316 
317 } // end namespace kinetica
string column_name
Name of a column on which the filter by value would be applied.
const string COLLECTION_NAME
[DEPRECATED–please specify the containing schema for the view as part of view_name and use Kinetica...
long count
The number of records passing the value filter.
string value_str
The string value to search for.
FilterByValueRequest()
Constructs a FilterByValueRequest object with default parameters.
double _value
The value to search for.
A set of results returned by Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary{string, string}).
const string QUALIFIED_VIEW_NAME
The fully qualified name of the view (i.e.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.filterByValue(string,string,bool,double,string,string,IDictionary{string, string}).
bool is_string
Indicates whether the value being searched for is string or numeric.
string table_name
Name of an existing table on which to perform the calculation, in [schema_name.
FilterByValueRequest(string table_name, string view_name, bool is_string, double?_value, string value_str, string column_name, IDictionary< string, string > options=null)
Constructs a FilterByValueRequest object with the specified parameters.
string view_name
If provided, then this will be the name of the view containing the results, in [schema_name.
const string CREATE_TEMP_TABLE
If true, a unique temporary table name will be generated in the sys_temp schema and used in place of ...
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14