Kinetica   C#   API  Version 7.2.3.1
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 
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 
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
string environment_name
Name of the environment to be created.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.createEnvironment.
CreateEnvironmentRequest()
Constructs a CreateEnvironmentRequest object with default parameters.
A set of results returned by Kinetica.createEnvironment.
string environment_name
Value of environment_name.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
CreateEnvironmentRequest(string environment_name, IDictionary< string, string > options=null)
Constructs a CreateEnvironmentRequest object with the specified parameters.