Kinetica C# API  Version 6.2.0.1
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 
21  {
22 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
27 
31 
38  public ShowSystemTimingRequest( IDictionary<string, string> options = null)
39  {
40  this.options = options ?? new Dictionary<string, string>();
41  } // end constructor
42 
43  } // end class ShowSystemTimingRequest
44 
45 
46 
51  {
52 
55  public IList<string> endpoints { get; set; } = new List<string>();
56 
58  public IList<float> time_in_ms { get; set; } = new List<float>();
59 
62  public IList<string> jobIds { get; set; } = new List<string>();
63 
64  } // end class ShowSystemTimingResponse
65 
66 
67 
68 
69 } // end namespace kinetica
A set of results returned by Kinetica.showSystemTiming(IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters, currently unused.
A set of parameters for Kinetica.showSystemTiming(IDictionary<string, string>).
ShowSystemTimingRequest()
Constructs a ShowSystemTimingRequest object with default parameters.
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