Kinetica   C#   API  Version 7.2.3.0
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 {
20  {
24  public struct Options
25  {
40  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
41 
42  public const string TRUE = "true";
43  public const string FALSE = "false";
44  } // end struct Options
45 
52  public string environment_name { get; set; } = "";
53 
80  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
81 
85 
122  IDictionary<string, string> options = null)
123  {
124  this.environment_name = environment_name ?? "";
125  this.options = options ?? new Dictionary<string, string>();
126  } // end constructor
127  } // end class ShowEnvironmentRequest
128 
133  {
135  public IList<string> environment_names { get; set; } = new List<string>();
136 
139  public IList<IList<string>> packages { get; set; } = new List<IList<string>>();
140 
142  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
143  } // end class ShowEnvironmentResponse
144 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
IList< IList< string > > packages
Information about the installed packages in the respective environments in environment_names.
string environment_name
Name of the environment on which to retrieve information.
A set of parameters for Kinetica.showEnvironment.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE and if the environment specified in environment_name does not exist, no error is returned.
A set of string constants for the parameter options.
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.