Kinetica C# API  Version 7.1.10.0
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
CollectStatistics.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 
20  {
21 
26  public string table_name { get; set; }
27 
31  public IList<string> column_names { get; set; } = new List<string>();
32 
35  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
36 
37 
41 
57  IList<string> column_names,
58  IDictionary<string, string> options = null)
59  {
60  this.table_name = table_name ?? "";
61  this.column_names = column_names ?? new List<string>();
62  this.options = options ?? new Dictionary<string, string>();
63  } // end constructor
64 
65  } // end class CollectStatisticsRequest
66 
67 
68 
73  {
74 
77  public string table_name { get; set; }
78 
81  public IList<string> column_names { get; set; } = new List<string>();
82 
84  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
85 
86  } // end class CollectStatisticsResponse
87 
88 
89 
90 
91 } // end namespace kinetica
IList< string > column_names
List of one or more column names in for which to collect statistics (cardinality, mean value, etc.).
IDictionary< string, string > info
Additional information.
CollectStatisticsRequest()
Constructs a CollectStatisticsRequest object with default parameters.
IList< string > column_names
Value of .
CollectStatisticsRequest(string table_name, IList< string > column_names, IDictionary< string, string > options=null)
Constructs a CollectStatisticsRequest object with the specified parameters.
string table_name
Name of a table, in [schema_name.
A set of parameters for Kinetica.collectStatistics(string,IList{string},IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.collectStatistics(string,IList{string},IDictionary{string, string}).