Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
20  {
24  public struct Options
25  {
40  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
41 
42  public const string TRUE = "true";
43  public const string FALSE = "false";
44  } // end struct Options
45 
54  public string table_name { get; set; } = "";
55 
59  public string authorization { get; set; } = "";
60 
87  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
88 
91  public ClearTableRequest() { }
92 
131  public ClearTableRequest( string table_name = null,
132  string authorization = null,
133  IDictionary<string, string> options = null)
134  {
135  this.table_name = table_name ?? "";
136  this.authorization = authorization ?? "";
137  this.options = options ?? new Dictionary<string, string>();
138  } // end constructor
139  } // end class ClearTableRequest
140 
145  {
149  public string table_name { get; set; }
150 
152  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
153  } // end class ClearTableResponse
154 } // end namespace kinetica
string table_name
Name of the table to be cleared, in [schema_name.
Definition: ClearTable.cs:54
A set of results returned by Kinetica.clearTable.
Definition: ClearTable.cs:144
A set of parameters for Kinetica.clearTable.
Definition: ClearTable.cs:19
IDictionary< string, string > options
Optional parameters.
Definition: ClearTable.cs:87
string table_name
Value of table_name for a given table, or 'ALL CLEARED' in case of clearing all tables.
Definition: ClearTable.cs:149
string authorization
No longer used.
Definition: ClearTable.cs:59
A set of string constants for the parameter options.
Definition: ClearTable.cs:24
ClearTableRequest(string table_name=null, string authorization=null, IDictionary< string, string > options=null)
Constructs a ClearTableRequest object with the specified parameters.
Definition: ClearTable.cs:131
IDictionary< string, string > info
Additional information.
Definition: ClearTable.cs:152
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:40
ClearTableRequest()
Constructs a ClearTableRequest object with default parameters.
Definition: ClearTable.cs:91