Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  {
22  public string table_name { get; set; }
23 
27  public IList<string> column_names { get; set; } = new List<string>();
28 
32  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
33 
37 
52  IList<string> column_names,
53  IDictionary<string, string> options = null)
54  {
55  this.table_name = table_name ?? "";
56  this.column_names = column_names ?? new List<string>();
57  this.options = options ?? new Dictionary<string, string>();
58  } // end constructor
59  } // end class CollectStatisticsRequest
60 
65  {
69  public string table_name { get; set; }
70 
74  public IList<string> column_names { get; set; } = new List<string>();
75 
77  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
78  } // end class CollectStatisticsResponse
79 } // end namespace kinetica
string table_name
Value of table_name.
IList< string > column_names
List of one or more column names in table_name for which to collect statistics (cardinality,...
IDictionary< string, string > info
Additional information.
CollectStatisticsRequest()
Constructs a CollectStatisticsRequest object with default parameters.
IList< string > column_names
Value of column_names.
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.
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.