Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
71  public struct Options
72  {
73 
92  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
93  public const string TRUE = "true";
94  public const string FALSE = "false";
95 
112  public const string CASCADE = "cascade";
113  } // end struct Options
114 
115 
118  public string schema_name { get; set; }
119 
166  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
167 
168 
171  public DropSchemaRequest() { }
172 
226  IDictionary<string, string> options = null)
227  {
228  this.schema_name = schema_name ?? "";
229  this.options = options ?? new Dictionary<string, string>();
230  } // end constructor
231 
232  } // end class DropSchemaRequest
233 
234 
235 
240  {
241 
244  public string schema_name { get; set; }
245 
247  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
248 
249  } // end class DropSchemaResponse
250 
251 
252 
253 
254 } // end namespace kinetica
A set of parameters for Kinetica.dropSchema(string,IDictionary{string, string}).
Definition: DropSchema.cs:20
DropSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a DropSchemaRequest object with the specified parameters.
Definition: DropSchema.cs:225
IDictionary< string, string > info
Additional information.
Definition: DropSchema.cs:247
string schema_name
Name of the schema to be dropped.
Definition: DropSchema.cs:118
DropSchemaRequest()
Constructs a DropSchemaRequest object with default parameters.
Definition: DropSchema.cs:171
IDictionary< string, string > options
Optional parameters.
Definition: DropSchema.cs:166
A set of results returned by Kinetica.dropSchema(string,IDictionary{string, string}).
Definition: DropSchema.cs:239
string schema_name
Value of .
Definition: DropSchema.cs:244
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:92
const string CASCADE
If true, all tables within the schema will be dropped.
Definition: DropSchema.cs:112