Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ClearTable.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 
23  {
24 
53  public struct Options
54  {
55 
73  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
74  public const string TRUE = "true";
75  public const string FALSE = "false";
76  } // end struct Options
77 
78 
83  public string table_name { get; set; } = "";
84 
87  public string authorization { get; set; } = "";
88 
115  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
116 
117 
120  public ClearTableRequest() { }
121 
158  public ClearTableRequest( string table_name = null,
159  string authorization = null,
160  IDictionary<string, string> options = null)
161  {
162  this.table_name = table_name ?? "";
163  this.authorization = authorization ?? "";
164  this.options = options ?? new Dictionary<string, string>();
165  } // end constructor
166 
167  } // end class ClearTableRequest
168 
169 
170 
175  {
176 
180  public string table_name { get; set; }
181 
183  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
184 
185  } // end class ClearTableResponse
186 
187 
188 
189 
190 } // end namespace kinetica
string table_name
Name of the table to be cleared.
Definition: ClearTable.cs:83
A set of results returned by Kinetica.clearTable(string,string,IDictionary{string, string}).
Definition: ClearTable.cs:174
A set of parameters for Kinetica.clearTable(string,string,IDictionary{string, string}).
Definition: ClearTable.cs:22
IDictionary< string, string > options
Optional parameters.
Definition: ClearTable.cs:115
string table_name
Value of for a given table, or &#39;ALL CLEARED&#39; in case of clearing all tables.
Definition: ClearTable.cs:180
string authorization
No longer used.
Definition: ClearTable.cs:87
ClearTableRequest(string table_name=null, string authorization=null, IDictionary< string, string > options=null)
Constructs a ClearTableRequest object with the specified parameters.
Definition: ClearTable.cs:158
IDictionary< string, string > info
Additional information.
Definition: ClearTable.cs:183
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string NO_ERROR_IF_NOT_EXISTS
If true and if the table specified in table_name does not exist no error is returned.
Definition: ClearTable.cs:73
ClearTableRequest()
Constructs a ClearTableRequest object with default parameters.
Definition: ClearTable.cs:120