Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
19 {
23  public struct Options
24  {
39  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
40 
41  public const string TRUE = "true";
42  public const string FALSE = "false";
43 
58  public const string SHOW_NAMES_ONLY = "show_names_only";
59  } // end struct Options
60 
67  public string environment_name { get; set; } = "";
68 
113  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
114 
118 
171  IDictionary<string, string> options = null)
172  {
173  this.environment_name = environment_name ?? "";
174  this.options = options ?? new Dictionary<string, string>();
175  } // end constructor
176 } // end class ShowEnvironmentRequest
177 
182 {
184  public IList<string> environment_names { get; set; } = new List<string>();
185 
188  public IList<IList<string>> packages { get; set; } = new List<IList<string>>();
189 
191  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
192 } // end class ShowEnvironmentResponse
ShowEnvironmentRequest()
Constructs a ShowEnvironmentRequest object with default parameters.
A set of parameters for Kinetica.showEnvironment.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > environment_names
A list of all environment names.
const string SHOW_NAMES_ONLY
If TRUE only return the names of the installed environments and omit package listing.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if the environment specified in environment_name does not exist, no error is returned.
IList< IList< string > > packages
Information about the installed packages in the respective environments in environment_names.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.showEnvironment.
ShowEnvironmentRequest(string environment_name=null, IDictionary< string, string > options=null)
Constructs a ShowEnvironmentRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
string environment_name
Name of the environment on which to retrieve information.
A set of string constants for the parameter options.