7 using System.Collections.Generic;
17 public class DropSchemaRequest : KineticaData
40 public const string TRUE =
"true";
41 public const string FALSE =
"false";
56 public const string CASCADE =
"cascade";
107 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
163 IDictionary<string, string>
options =
null)
173 public class DropSchemaResponse : KineticaData
180 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
string schema_name
Name of the schema to be dropped.
const string CASCADE
If TRUE, all tables within the schema will be dropped.
DropSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a DropSchemaRequest object with the specified parameters.
string schema_name
Value of schema_name.
DropSchemaRequest()
Constructs a DropSchemaRequest object with default parameters.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if the schema specified in schema_name does not exist, no error is returned.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.