Kinetica   C#   API  Version 7.2.3.1
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 
106  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
107 
110  public DropSchemaRequest() { }
111 
162  IDictionary<string, string> options = null)
163  {
164  this.schema_name = schema_name ?? "";
165  this.options = options ?? new Dictionary<string, string>();
166  } // end constructor
167 } // end class DropSchemaRequest
168 
173 {
176  public string schema_name { get; set; }
177 
179  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
180 } // end class DropSchemaResponse
DropSchemaRequest()
Constructs a DropSchemaRequest object with default parameters.
Definition: DropSchema.cs:110
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
Definition: DropSchema.cs:179
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
string schema_name
Value of schema_name.
Definition: DropSchema.cs:176
const string CASCADE
If TRUE, all tables within the schema will be dropped.
Definition: DropSchema.cs:56
DropSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a DropSchemaRequest object with the specified parameters.
Definition: DropSchema.cs:161
A set of parameters for Kinetica.dropSchema.
Definition: DropSchema.cs:17
A set of string constants for the parameter options.
Definition: DropSchema.cs:22
string schema_name
Name of the schema to be dropped.
Definition: DropSchema.cs:61
A set of results returned by Kinetica.dropSchema.
Definition: DropSchema.cs:172
IDictionary< string, string > options
Optional parameters.
Definition: DropSchema.cs:106