Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
155  public struct PropertyMap
156  {
157 
175  public const string CONF_ENABLE_WORKER_HTTP_SERVERS = "conf.enable_worker_http_servers";
176 
179  public const string TRUE = "TRUE";
180 
183  public const string FALSE = "FALSE";
184 
187  public const string CONF_WORKER_HTTP_SERVER_IPS = "conf.worker_http_server_ips";
188 
192  public const string CONF_WORKER_HTTP_SERVER_PORTS = "conf.worker_http_server_ports";
193 
196  public const string CONF_HM_HTTP_PORT = "conf.hm_http_port";
197 
200  public const string CONF_ENABLE_HA = "conf.enable_ha";
201 
205  public const string CONF_HA_RING_HEAD_NODES = "conf.ha_ring_head_nodes";
206  } // end struct PropertyMap
207 
208 
268  public IDictionary<string, string> property_map { get; set; } = new Dictionary<string, string>();
269 
271  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
272 
273  } // end class ShowSystemPropertiesResponse
274 
275 
276 
277 
278 } // end namespace kinetica
const string CONF_ENABLE_WORKER_HTTP_SERVERS
Boolean value indicating whether the system is configured for multi-head ingestion.
A set of results returned by Kinetica.showSystemProperties(IDictionary{string, string}).
A map of server configuration parameters and version information.
const string CONF_WORKER_HTTP_SERVER_IPS
Semicolon (&#39;;&#39;) separated string of IP addresses of all the ingestion-enabled worker heads of the sys...
A set of parameters for Kinetica.showSystemProperties(IDictionary{string, string}).
ShowSystemPropertiesRequest(IDictionary< string, string > options=null)
Constructs a ShowSystemPropertiesRequest object with the specified parameters.
const string CONF_HA_RING_HEAD_NODES
A comma-separated string of high availability (HA) ring node URLs.
const string CONF_HM_HTTP_PORT
The host manager port number (an integer value).
const string CONF_ENABLE_HA
Flag indicating whether high availability (HA) is set up (a boolean value).
const string FALSE
Indicates that the system is NOT configured for multi-head ingestion.
IDictionary< string, string > options
Optional parameters.
const string CONF_WORKER_HTTP_SERVER_PORTS
Semicolon (&#39;;&#39;) separated string of the port numbers of all the ingestion-enabled worker ranks of the...
IDictionary< string, string > property_map
A map of server configuration parameters and version information.
ShowSystemPropertiesRequest()
Constructs a ShowSystemPropertiesRequest object with default parameters.
const string TRUE
Indicates that the system is configured for multi-head ingestion.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
const string PROPERTIES
A list of comma separated names of properties requested.