Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
DropEnvironment.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 
53  public struct Options
54  {
55 
74  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
75  public const string TRUE = "true";
76  public const string FALSE = "false";
77  } // end struct Options
78 
79 
82  public string environment_name { get; set; }
83 
112  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
113 
114 
118 
154  IDictionary<string, string> options = null)
155  {
156  this.environment_name = environment_name ?? "";
157  this.options = options ?? new Dictionary<string, string>();
158  } // end constructor
159 
160  } // end class DropEnvironmentRequest
161 
162 
163 
168  {
169 
172  public string environment_name { get; set; }
173 
175  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
176 
177  } // end class DropEnvironmentResponse
178 
179 
180 
181 
182 } // end namespace kinetica
A set of results returned by Kinetica.dropEnvironment(string,IDictionary{string, string}).
string environment_name
Name of the environment to be dropped.
const string NO_ERROR_IF_NOT_EXISTS
If true and if the environment specified in environment_name does not exist, no error is returned...
DropEnvironmentRequest()
Constructs a DropEnvironmentRequest object with default parameters.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.dropEnvironment(string,IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
DropEnvironmentRequest(string environment_name, IDictionary< string, string > options=null)
Constructs a DropEnvironmentRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14