Kinetica C# API  Version 6.1.0.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 
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 
136  public struct PropertyMap
137  {
138 
156  public const string CONF_ENABLE_WORKER_HTTP_SERVERS = "conf.enable_worker_http_servers";
157 
160  public const string TRUE = "TRUE";
161 
164  public const string FALSE = "FALSE";
165 
168  public const string CONF_WORKER_HTTP_SERVER_IPS = "conf.worker_http_server_ips";
169 
173  public const string CONF_WORKER_HTTP_SERVER_PORTS = "conf.worker_http_server_ports";
174  } // end struct PropertyMap
175 
176 
217  public IDictionary<string, string> property_map { get; set; } = new Dictionary<string, string>();
218 
219  } // end class ShowSystemPropertiesResponse
220 
221 
222 
223 
224 } // 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.