Kinetica   C#   API  Version 7.2.3.1
ClearTables.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 
19 {
23  public struct Options
24  {
39  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
40 
41  public const string TRUE = "true";
42  public const string FALSE = "false";
43  } // end struct Options
44 
53  public IList<string> table_names { get; set; } = new List<string>();
54 
80  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
81 
84  public ClearTablesRequest() { }
85 
122  public ClearTablesRequest( IList<string> table_names = null,
123  IDictionary<string, string> options = null)
124  {
125  this.table_names = table_names ?? new List<string>();
126  this.options = options ?? new Dictionary<string, string>();
127  } // end constructor
128 } // end class ClearTablesRequest
129 
134 {
138  public IDictionary<string, string> tables { get; set; } = new Dictionary<string, string>();
139 
141  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
142 } // end class ClearTablesResponse
IDictionary< string, string > info
Additional information.
Definition: ClearTables.cs:141
A set of string constants for the parameter options.
Definition: ClearTables.cs:23
IDictionary< string, string > tables
For each table in table_names, any error from the clear operation, or an empty string if successful.
Definition: ClearTables.cs:138
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.clearTables.
Definition: ClearTables.cs:133
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if a table specified in table_names does not exist no error is returned.
Definition: ClearTables.cs:39
IDictionary< string, string > options
Optional parameters.
Definition: ClearTables.cs:80
ClearTablesRequest(IList< string > table_names=null, IDictionary< string, string > options=null)
Constructs a ClearTablesRequest object with the specified parameters.
Definition: ClearTables.cs:122
ClearTablesRequest()
Constructs a ClearTablesRequest object with default parameters.
Definition: ClearTables.cs:84
IList< string > table_names
Names of the tables to be cleared, in [schema_name.
Definition: ClearTables.cs:53
A set of parameters for Kinetica.clearTables.
Definition: ClearTables.cs:18