Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
18  {
22  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
23 
27 
33  public ShowSystemTimingRequest( IDictionary<string, string> options = null)
34  {
35  this.options = options ?? new Dictionary<string, string>();
36  } // end constructor
37  } // end class ShowSystemTimingRequest
38 
43  {
46  public IList<string> endpoints { get; set; } = new List<string>();
47 
49  public IList<float> time_in_ms { get; set; } = new List<float>();
50 
53  public IList<string> jobIds { get; set; } = new List<string>();
54 
56  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
57  } // end class ShowSystemTimingResponse
58 } // end namespace kinetica
IList< float > time_in_ms
List of time (in ms) of the recent requests.
A set of results returned by Kinetica.showSystemTiming.
IDictionary< string, string > options
Optional parameters, currently unused.
A set of parameters for Kinetica.showSystemTiming.
IList< string > endpoints
List of recently called endpoints, most recent first.
ShowSystemTimingRequest()
Constructs a ShowSystemTimingRequest object with default parameters.
IDictionary< string, string > info
Additional information.
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