Kinetica C# API  Version 6.2.0.1
ShowSystemProperties.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 
21  {
22 
36  public struct Options
37  {
38 
42  public const string PROPERTIES = "properties";
43  } // end struct Options
44 
45 
57  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
58 
59 
63 
79  public ShowSystemPropertiesRequest( IDictionary<string, string> options = null)
80  {
81  this.options = options ?? new Dictionary<string, string>();
82  } // end constructor
83 
84  } // end class ShowSystemPropertiesRequest
85 
86 
87 
92  {
93 
142  public struct PropertyMap
143  {
144 
162  public const string CONF_ENABLE_WORKER_HTTP_SERVERS = "conf.enable_worker_http_servers";
163 
166  public const string TRUE = "TRUE";
167 
170  public const string FALSE = "FALSE";
171 
174  public const string CONF_WORKER_HTTP_SERVER_IPS = "conf.worker_http_server_ips";
175 
179  public const string CONF_WORKER_HTTP_SERVER_PORTS = "conf.worker_http_server_ports";
180 
183  public const string CONF_HM_HTTP_PORT = "conf.hm_http_port";
184  } // end struct PropertyMap
185 
186 
233  public IDictionary<string, string> property_map { get; set; } = new Dictionary<string, string>();
234 
235  } // end class ShowSystemPropertiesResponse
236 
237 
238 
239 
240 } // end namespace kinetica
A set of results returned by Kinetica.showSystemProperties(IDictionary<string, string>).
A map of server configuration parameters and version information.
A set of parameters for Kinetica.showSystemProperties(IDictionary<string, string>).
ShowSystemPropertiesRequest(IDictionary< string, string > options=null)
Constructs a ShowSystemPropertiesRequest object with the specified parameters.
IDictionary< string, string > options
Optional parameters.
ShowSystemPropertiesRequest()
Constructs a ShowSystemPropertiesRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string PROPERTIES
A list of comma separated names of properties requested.