Kinetica C# API  Version 6.1.0.0
ShowSystemStatus.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 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
26 
30 
37  public ShowSystemStatusRequest( IDictionary<string, string> options = null)
38  {
39  this.options = options ?? new Dictionary<string, string>();
40  } // end constructor
41 
42  } // end class ShowSystemStatusRequest
43 
44 
45 
50  {
51 
54  public IDictionary<string, string> status_map { get; set; } = new Dictionary<string, string>();
55 
56  } // end class ShowSystemStatusResponse
57 
58 
59 
60 
61 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters, currently unused.
ShowSystemStatusRequest(IDictionary< string, string > options=null)
Constructs a ShowSystemStatusRequest object with the specified parameters.
ShowSystemStatusRequest()
Constructs a ShowSystemStatusRequest object with default parameters.
A set of results returned by Kinetica.showSystemStatus(IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.showSystemStatus(IDictionary<string, string>).