Kinetica C# API  Version 7.1.10.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 
25  {
26 
55  public struct Options
56  {
57 
75  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
76  public const string TRUE = "true";
77  public const string FALSE = "false";
78  } // end struct Options
79 
80 
88  public string table_name { get; set; } = "";
89 
92  public string authorization { get; set; } = "";
93 
120  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
121 
122 
125  public ClearTableRequest() { }
126 
166  public ClearTableRequest( string table_name = null,
167  string authorization = null,
168  IDictionary<string, string> options = null)
169  {
170  this.table_name = table_name ?? "";
171  this.authorization = authorization ?? "";
172  this.options = options ?? new Dictionary<string, string>();
173  } // end constructor
174 
175  } // end class ClearTableRequest
176 
177 
178 
183  {
184 
188  public string table_name { get; set; }
189 
191  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
192 
193  } // end class ClearTableResponse
194 
195 
196 
197 
198 } // end namespace kinetica
string table_name
Name of the table to be cleared, in [schema_name.
Definition: ClearTable.cs:88
A set of results returned by Kinetica.clearTable(string,string,IDictionary{string, string}).
Definition: ClearTable.cs:182
A set of parameters for Kinetica.clearTable(string,string,IDictionary{string, string}).
Definition: ClearTable.cs:24
IDictionary< string, string > options
Optional parameters.
Definition: ClearTable.cs:120
string table_name
Value of for a given table, or &#39;ALL CLEARED&#39; in case of clearing all tables.
Definition: ClearTable.cs:188
string authorization
No longer used.
Definition: ClearTable.cs:92
ClearTableRequest(string table_name=null, string authorization=null, IDictionary< string, string > options=null)
Constructs a ClearTableRequest object with the specified parameters.
Definition: ClearTable.cs:166
IDictionary< string, string > info
Additional information.
Definition: ClearTable.cs:191
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:75
ClearTableRequest()
Constructs a ClearTableRequest object with default parameters.
Definition: ClearTable.cs:125