Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
17 {
21  public struct Options
22  {
37  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41  } // end struct Options
42 
45  public string environment_name { get; set; }
46 
73  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
74 
78 
111  IDictionary<string, string> options = null)
112  {
113  this.environment_name = environment_name ?? "";
114  this.options = options ?? new Dictionary<string, string>();
115  } // end constructor
116 } // end class DropEnvironmentRequest
117 
122 {
126  public string environment_name { get; set; }
127 
129  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
130 } // end class DropEnvironmentResponse
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of string constants for the parameter options.
DropEnvironmentRequest()
Constructs a DropEnvironmentRequest object with default parameters.
A set of results returned by Kinetica.dropEnvironment.
DropEnvironmentRequest(string environment_name, IDictionary< string, string > options=null)
Constructs a DropEnvironmentRequest object with the specified parameters.
A set of parameters for Kinetica.dropEnvironment.
IDictionary< string, string > info
Additional information.
string environment_name
Name of the environment to be dropped.
string environment_name
Value of environment_name.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if the environment specified in environment_name does not exist, no error is returned.
IDictionary< string, string > options
Optional parameters.