7 using System.Collections.Generic;
18 public class ClearTablesRequest : KineticaData
41 public const string TRUE =
"true";
42 public const string FALSE =
"false";
53 public IList<string>
table_names {
get;
set; } =
new List<string>();
81 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
124 IDictionary<string, string>
options =
null)
134 public class ClearTablesResponse : KineticaData
140 public IDictionary<string, string>
tables {
get;
set; } =
new Dictionary<string, string>();
143 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
ClearTablesRequest(IList< string > table_names=null, IDictionary< string, string > options=null)
Constructs a ClearTablesRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
IList< string > table_names
Names of the tables to be cleared, in [schema_name.
IDictionary< string, string > tables
For each table in table_names, any error from the clear operation, or an empty string if successful.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if a table specified in table_names does not exist no error is returned.
ClearTablesRequest()
Constructs a ClearTablesRequest object with default parameters.
IDictionary< string, string > info
Additional information.