Kinetica   C#   API  Version 7.2.3.0
DropSchema.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 {
18  {
22  public struct Options
23  {
38  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
39 
40  public const string TRUE = "true";
41  public const string FALSE = "false";
42 
56  public const string CASCADE = "cascade";
57  } // end struct Options
58 
61  public string schema_name { get; set; }
62 
107  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
108 
111  public DropSchemaRequest() { }
112 
163  IDictionary<string, string> options = null)
164  {
165  this.schema_name = schema_name ?? "";
166  this.options = options ?? new Dictionary<string, string>();
167  } // end constructor
168  } // end class DropSchemaRequest
169 
174  {
177  public string schema_name { get; set; }
178 
180  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
181  } // end class DropSchemaResponse
182 } // end namespace kinetica
A set of string constants for the parameter options.
Definition: DropSchema.cs:22
A set of parameters for Kinetica.dropSchema.
Definition: DropSchema.cs:17
DropSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a DropSchemaRequest object with the specified parameters.
Definition: DropSchema.cs:162
IDictionary< string, string > info
Additional information.
Definition: DropSchema.cs:180
string schema_name
Name of the schema to be dropped.
Definition: DropSchema.cs:61
DropSchemaRequest()
Constructs a DropSchemaRequest object with default parameters.
Definition: DropSchema.cs:111
IDictionary< string, string > options
Optional parameters.
Definition: DropSchema.cs:107
A set of results returned by Kinetica.dropSchema.
Definition: DropSchema.cs:173
string schema_name
Value of schema_name.
Definition: DropSchema.cs:177
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 schema specified in schema_name does not exist, no error is returned.
Definition: DropSchema.cs:38
const string CASCADE
If TRUE, all tables within the schema will be dropped.
Definition: DropSchema.cs:56