7 using System.Collections.Generic;
41 public const string TRUE =
"true";
42 public const string FALSE =
"false";
53 public IList<string>
table_names {
get;
set; } =
new List<string>();
80 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
123 IDictionary<string, string>
options =
null)
138 public IDictionary<string, string>
tables {
get;
set; } =
new Dictionary<string, string>();
141 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IDictionary< string, string > info
Additional information.
A set of string constants for the parameter options.
IDictionary< string, string > tables
For each table in table_names, any error from the clear operation, or an empty string if successful.
KineticaData - class to help with Avro Encoding for Kinetica
A set of results returned by Kinetica.clearTables.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if a table specified in table_names does not exist no error is returned.
IDictionary< string, string > options
Optional parameters.
ClearTablesRequest(IList< string > table_names=null, IDictionary< string, string > options=null)
Constructs a ClearTablesRequest object with the specified parameters.
ClearTablesRequest()
Constructs a ClearTablesRequest object with default parameters.
IList< string > table_names
Names of the tables to be cleared, in [schema_name.
A set of parameters for Kinetica.clearTables.