Kinetica   C#   API  Version 7.2.3.0
CreateEnvironment.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  public class CreateEnvironmentRequest : KineticaData
18  {
20  public string environment_name { get; set; }
21 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
30 
39  IDictionary<string, string> options = null)
40  {
41  this.environment_name = environment_name ?? "";
42  this.options = options ?? new Dictionary<string, string>();
43  } // end constructor
44  } // end class CreateEnvironmentRequest
45 
49  public class CreateEnvironmentResponse : KineticaData
50  {
54  public string environment_name { get; set; }
55 
57  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
58  } // end class CreateEnvironmentResponse
59 } // end namespace kinetica
CreateEnvironmentRequest(string environment_name, IDictionary< string, string > options=null)
Constructs a CreateEnvironmentRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
CreateEnvironmentRequest()
Constructs a CreateEnvironmentRequest object with default parameters.
string environment_name
Value of environment_name.
string environment_name
Name of the environment to be created.
IDictionary< string, string > options
Optional parameters.