Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowEnvironment.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 
23  {
24 
55  public struct Options
56  {
57 
76  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
77  public const string TRUE = "true";
78  public const string FALSE = "false";
79  } // end struct Options
80 
81 
86  public string environment_name { get; set; } = "";
87 
116  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
117 
118 
122 
161  IDictionary<string, string> options = null)
162  {
163  this.environment_name = environment_name ?? "";
164  this.options = options ?? new Dictionary<string, string>();
165  } // end constructor
166 
167  } // end class ShowEnvironmentRequest
168 
169 
170 
175  {
176 
178  public IList<string> environment_names { get; set; } = new List<string>();
179 
182  public IList<IList<string>> packages { get; set; } = new List<IList<string>>();
183 
185  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
186 
187  } // end class ShowEnvironmentResponse
188 
189 
190 
191 
192 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
IList< IList< string > > packages
Information about the installed packages in the respective environments in &lt;member name=&quot;environment_...
string environment_name
Name of the environment on which to retrieve information.
A set of parameters for Kinetica.showEnvironment(string,IDictionary{string, string}).
const string NO_ERROR_IF_NOT_EXISTS
If true and if the environment specified in environment_name does not exist, no error is returned...
ShowEnvironmentRequest(string environment_name=null, IDictionary< string, string > options=null)
Constructs a ShowEnvironmentRequest object with the specified parameters.
ShowEnvironmentRequest()
Constructs a ShowEnvironmentRequest object with default parameters.
IList< string > environment_names
A list of all credential names.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.showEnvironment(string,IDictionary{string, string}).