Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
25  public string table_name { get; set; } = "";
26 
32  public string column_name { get; set; } = "";
33 
36  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
37 
38 
42 
56  public ClearStatisticsRequest( string table_name = null,
57  string column_name = null,
58  IDictionary<string, string> options = null)
59  {
60  this.table_name = table_name ?? "";
61  this.column_name = column_name ?? "";
62  this.options = options ?? new Dictionary<string, string>();
63  } // end constructor
64 
65  } // end class ClearStatisticsRequest
66 
67 
68 
73  {
74 
77  public string table_name { get; set; }
78 
81  public string column_name { get; set; }
82 
84  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
85 
86  } // end class ClearStatisticsResponse
87 
88 
89 
90 
91 } // end namespace kinetica
A set of results returned by Kinetica.clearStatistics(string,string,IDictionary{string, string}).
ClearStatisticsRequest(string table_name=null, string column_name=null, IDictionary< string, string > options=null)
Constructs a ClearStatisticsRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.clearStatistics(string,string,IDictionary{string, string}).
string column_name
Name of the column in for which to clear statistics.
ClearStatisticsRequest()
Constructs a ClearStatisticsRequest object with default parameters.
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string table_name
Name of a table.