Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
18  {
22  public struct Options
23  {
28  public const string PROPERTIES = "properties";
29  } // end struct Options
30 
42  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
43 
47 
62  public ShowSystemPropertiesRequest( IDictionary<string, string> options = null)
63  {
64  this.options = options ?? new Dictionary<string, string>();
65  } // end constructor
66  } // end class ShowSystemPropertiesRequest
67 
72  {
77  public struct PropertyMap
78  {
94  public const string CONF_ENABLE_WORKER_HTTP_SERVERS = "conf.enable_worker_http_servers";
95 
98  public const string TRUE = "TRUE";
99 
102  public const string FALSE = "FALSE";
103 
106  public const string CONF_WORKER_HTTP_SERVER_IPS = "conf.worker_http_server_ips";
107 
111  public const string CONF_WORKER_HTTP_SERVER_PORTS = "conf.worker_http_server_ports";
112 
115  public const string CONF_HM_HTTP_PORT = "conf.hm_http_port";
116 
119  public const string CONF_ENABLE_HA = "conf.enable_ha";
120 
125  public const string CONF_HA_RING_HEAD_NODES = "conf.ha_ring_head_nodes";
126  } // end struct PropertyMap
127 
192  public IDictionary<string, string> property_map { get; set; } = new Dictionary<string, string>();
193 
195  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
196  } // end class ShowSystemPropertiesResponse
197 } // 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.
A set of string constants for the parameter property_map.
const string CONF_WORKER_HTTP_SERVER_IPS
Semicolon (';') separated string of IP addresses of all the ingestion-enabled worker heads of the sys...
A set of parameters for Kinetica.showSystemProperties.
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 (';') 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.
A set of string constants for the parameter options.
const string PROPERTIES
A list of comma separated names of properties requested.