Kinetica   C#   API  Version 7.2.3.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 namespace kinetica;
10 
18 {
22  public struct Options
23  {
28  public const string PROPERTIES = "properties";
29  } // end struct Options
30 
41  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
42 
46 
60  public ShowSystemPropertiesRequest( IDictionary<string, string> options = null)
61  {
62  this.options = options ?? new Dictionary<string, string>();
63  } // end constructor
64 } // end class ShowSystemPropertiesRequest
65 
70 {
75  public struct PropertyMap
76  {
92  public const string CONF_ENABLE_WORKER_HTTP_SERVERS = "conf.enable_worker_http_servers";
93 
96  public const string TRUE = "TRUE";
97 
100  public const string FALSE = "FALSE";
101 
104  public const string CONF_WORKER_HTTP_SERVER_IPS = "conf.worker_http_server_ips";
105 
108  public const string CONF_WORKER_HTTP_SERVER_PORTS = "conf.worker_http_server_ports";
109 
111  public const string CONF_HM_HTTP_PORT = "conf.hm_http_port";
112 
115  public const string CONF_ENABLE_HA = "conf.enable_ha";
116 
121  public const string CONF_HA_RING_HEAD_NODES = "conf.ha_ring_head_nodes";
122  } // end struct PropertyMap
123 
185  public IDictionary<string, string> property_map { get; set; } = new Dictionary<string, string>();
186 
188  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
189 } // end class ShowSystemPropertiesResponse
A set of string constants for the parameter property_map.
ShowSystemPropertiesRequest()
Constructs a ShowSystemPropertiesRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.showSystemProperties.
const string FALSE
Indicates that the system is NOT configured for multi-head ingestion.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of string constants for the parameter options.
A set of parameters for Kinetica.showSystemProperties.
const string TRUE
Indicates that the system is configured for multi-head ingestion.
const string CONF_ENABLE_HA
Flag indicating whether high availability (HA) is set up (a boolean value).
IDictionary< string, string > info
Additional information.
const string CONF_HA_RING_HEAD_NODES
A comma-separated string of high availability (HA) ring node URLs.
ShowSystemPropertiesRequest(IDictionary< string, string > options=null)
Constructs a ShowSystemPropertiesRequest object with the specified parameters.
const string CONF_WORKER_HTTP_SERVER_IPS
Semicolon (';') separated string of IP addresses of all the ingestion-enabled worker heads of the sys...
IDictionary< string, string > property_map
A map of server configuration parameters and version information.
const string CONF_WORKER_HTTP_SERVER_PORTS
Semicolon (';') separated string of the port numbers of all the ingestion-enabled worker ranks of the...
const string CONF_HM_HTTP_PORT
The host manager port number (an integer value).
const string CONF_ENABLE_WORKER_HTTP_SERVERS
Boolean value indicating whether the system is configured for multi-head ingestion.
const string PROPERTIES
A list of comma separated names of properties requested.