Kinetica C# API  Version 6.1.0.0
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 
81  public string table_name { get; set; } = "";
82 
84  public string authorization { get; set; } = "";
85 
112  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
113 
114 
117  public ClearTableRequest() { }
118 
154  public ClearTableRequest( string table_name = null,
155  string authorization = null,
156  IDictionary<string, string> options = null)
157  {
158  this.table_name = table_name ?? "";
159  this.authorization = authorization ?? "";
160  this.options = options ?? new Dictionary<string, string>();
161  } // end constructor
162 
163  } // end class ClearTableRequest
164 
165 
166 
171  {
172 
176  public string table_name { get; set; }
177 
178  } // end class ClearTableResponse
179 
180 
181 
182 
183 } // end namespace kinetica
string table_name
Name of the table to be cleared.
Definition: ClearTable.cs:81
A set of results returned by Kinetica.clearTable(string,string,IDictionary<string, string>).
Definition: ClearTable.cs:170
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:112
string authorization
No longer used. User can pass an empty string.
Definition: ClearTable.cs:84
ClearTableRequest(string table_name=null, string authorization=null, IDictionary< string, string > options=null)
Constructs a ClearTableRequest object with the specified parameters.
Definition: ClearTable.cs:154
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:117