Kinetica   C#   API  Version 7.2.3.1
ClearStatistics.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 {
23  public string table_name { get; set; } = "";
24 
30  public string column_name { get; set; } = "";
31 
35  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
36 
40 
55  public ClearStatisticsRequest( string table_name = null,
56  string column_name = null,
57  IDictionary<string, string> options = null)
58  {
59  this.table_name = table_name ?? "";
60  this.column_name = column_name ?? "";
61  this.options = options ?? new Dictionary<string, string>();
62  } // end constructor
63 } // end class ClearStatisticsRequest
64 
69 {
72  public string table_name { get; set; }
73 
76  public string column_name { get; set; }
77 
79  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
80 } // end class ClearStatisticsResponse
ClearStatisticsRequest(string table_name=null, string column_name=null, IDictionary< string, string > options=null)
Constructs a ClearStatisticsRequest object with the specified parameters.
ClearStatisticsRequest()
Constructs a ClearStatisticsRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string column_name
Value of column_name.
string column_name
Name of the column in table_name for which to clear statistics.
string table_name
Name of a table, in [schema_name.
A set of results returned by Kinetica.clearStatistics.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.clearStatistics.
string table_name
Value of table_name.