Kinetica C# API  Version 6.2.0.1
AdminShowJobs.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 
19  {
20 
43  public struct Options
44  {
45 
58  public const string SHOW_DETAILS = "show_details";
59  public const string TRUE = "true";
60  public const string FALSE = "false";
61  } // end struct Options
62 
63 
84  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
85 
86 
89  public AdminShowJobsRequest() { }
90 
115  public AdminShowJobsRequest( IDictionary<string, string> options = null)
116  {
117  this.options = options ?? new Dictionary<string, string>();
118  } // end constructor
119 
120  } // end class AdminShowJobsRequest
121 
122 
123 
128  {
129  public IList<int> job_id { get; set; } = new List<int>();
130  public IList<string> status { get; set; } = new List<string>();
131  public IList<string> endpoint_name { get; set; } = new List<string>();
132  public IList<long> time_received { get; set; } = new List<long>();
133  public IList<string> auth_id { get; set; } = new List<string>();
134  public IList<string> user_data { get; set; } = new List<string>();
135 
136  } // end class AdminShowJobsResponse
137 
138 
139 
140 
141 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
const string SHOW_DETAILS
Supported values: TRUE FALSE
A set of results returned by Kinetica.adminShowJobs(IDictionary<string, string>). ...
AdminShowJobsRequest(IDictionary< string, string > options=null)
Constructs an AdminShowJobsRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AdminShowJobsRequest()
Constructs an AdminShowJobsRequest object with default parameters.
A set of parameters for Kinetica.adminShowJobs(IDictionary<string, string>).