Kinetica C# API  Version 6.0.1.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 
21  {
22 
25  public string table_name { get; set; } = "";
26 
28  public string authorization { get; set; } = "";
29 
31  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
32 
33 
36  public ClearTableRequest() { }
37 
48  public ClearTableRequest( string table_name = null,
49  string authorization = null,
50  IDictionary<string, string> options = null)
51  {
52  this.table_name = table_name ?? "";
53  this.authorization = authorization ?? "";
54  this.options = options ?? new Dictionary<string, string>();
55  } // end constructor
56 
57  } // end class ClearTableRequest
58 
59 
60 
63  {
64 
68  public string table_name { get; set; }
69 
70  } // end class ClearTableResponse
71 
72 
73 
74 
75 } // end namespace kinetica
string table_name
Name of the table to be cleared.
Definition: ClearTable.cs:25
A set of results returned by /clear/table.
Definition: ClearTable.cs:62
A set of parameters for /clear/table.
Definition: ClearTable.cs:20
IDictionary< string, string > options
Optional parameters.
Definition: ClearTable.cs:31
string table_name
Value of for a given table, or &#39;ALL CLEARED&#39; in case of clearing all tables.
Definition: ClearTable.cs:68
string authorization
No longer used. User can pass an empty string.
Definition: ClearTable.cs:28
ClearTableRequest(string table_name=null, string authorization=null, IDictionary< string, string > options=null)
Constructs a ClearTableRequest object with the specified parameters.
Definition: ClearTable.cs:48
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
ClearTableRequest()
Constructs a ClearTableRequest object with default parameters.
Definition: ClearTable.cs:36