Kinetica   C#   API  Version 7.2.3.0
ShowStatistics.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  {
21  public struct Options
22  {
37  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41  } // end struct Options
42 
49  public IList<string> table_names { get; set; } = new List<string>();
50 
77  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
78 
81  public ShowStatisticsRequest() { }
82 
117  public ShowStatisticsRequest( IList<string> table_names,
118  IDictionary<string, string> options = null)
119  {
120  this.table_names = table_names ?? new List<string>();
121  this.options = options ?? new Dictionary<string, string>();
122  } // end constructor
123  } // end class ShowStatisticsRequest
124 
129  {
133  public IList<string> table_names { get; set; } = new List<string>();
134 
139  public IList<IList<IDictionary<string, string>>> stastistics_map { get; set; } = new List<IList<IDictionary<string, string>>>();
140 
142  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
143  } // end class ShowStatisticsResponse
144 } // end namespace kinetica
ShowStatisticsRequest()
Constructs a ShowStatisticsRequest object with default parameters.
IList< string > table_names
Names of tables whose metadata will be fetched, each in [schema_name.
IList< string > table_names
Value of table_names.
A set of string constants for the parameter options.
IDictionary< string, string > info
Additional information.
IList< IList< IDictionary< string, string > > > stastistics_map
A list of maps which contain the column statistics of the table table_names.
A set of results returned by Kinetica.showStatistics.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if the table names specified in table_names does not exist, no error is returned.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
ShowStatisticsRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowStatisticsRequest object with the specified parameters.
A set of parameters for Kinetica.showStatistics.