Kinetica C# API  Version 6.0.1.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 
20  {
21 
34  public struct Options
35  {
36 
40  public const string PROPERTIES = "properties";
41  } // end struct Options
42 
43 
54  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
55 
56 
60 
75  public ShowSystemPropertiesRequest( IDictionary<string, string> options = null)
76  {
77  this.options = options ?? new Dictionary<string, string>();
78  } // end constructor
79 
80  } // end class ShowSystemPropertiesRequest
81 
82 
83 
87  {
88 
114  public struct PropertyMap
115  {
116 
120  public const string CONF_ENABLE_WORKER_HTTP_SERVERS = "conf.enable_worker_http_servers";
121 
124  public const string TRUE = "TRUE";
125 
128  public const string FALSE = "FALSE";
129 
132  public const string CONF_WORKER_HTTP_SERVER_IPS = "conf.worker_http_server_ips";
133 
137  public const string CONF_WORKER_HTTP_SERVER_PORTS = "conf.worker_http_server_ports";
138  } // end struct PropertyMap
139 
140 
164  public IDictionary<string, string> property_map { get; set; } = new Dictionary<string, string>();
165 
166  } // end class ShowSystemPropertiesResponse
167 
168 
169 
170 
171 } // 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 /show/system/properties.
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 /show/system/properties.
ShowSystemPropertiesRequest(IDictionary< string, string > options=null)
Constructs a ShowSystemPropertiesRequest object with the specified parameters.
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
const string PROPERTIES
A list of comma separated names of properties requested.