Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowSystemTiming.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 
23  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
24 
25 
29 
36  public ShowSystemTimingRequest( IDictionary<string, string> options = null)
37  {
38  this.options = options ?? new Dictionary<string, string>();
39  } // end constructor
40 
41  } // end class ShowSystemTimingRequest
42 
43 
44 
47  {
48 
51  public IList<string> endpoints { get; set; } = new List<string>();
52 
54  public IList<float> time_in_ms { get; set; } = new List<float>();
55 
58  public IList<string> jobIds { get; set; } = new List<string>();
59 
60  } // end class ShowSystemTimingResponse
61 
62 
63 
64 
65 } // end namespace kinetica
IList< float > time_in_ms
List of time (in ms) of the recent requests.
A set of results returned by /show/system/timing.
IDictionary< string, string > options
Optional parameters, currently unused.
A set of parameters for /show/system/timing.
IList< string > endpoints
List of recently called endpoints, most recent first.
ShowSystemTimingRequest()
Constructs a ShowSystemTimingRequest object with default parameters.
IList< string > jobIds
List of the internal job ids for the recent requests.
ShowSystemTimingRequest(IDictionary< string, string > options=null)
Constructs a ShowSystemTimingRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14