Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  {
21  public struct Options
22  {
37  public const string SHOW_ASYNC_JOBS = "show_async_jobs";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41 
53  public const string SHOW_WORKER_INFO = "show_worker_info";
54  } // end struct Options
55 
97  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
98 
101  public AdminShowJobsRequest() { }
102 
147  public AdminShowJobsRequest( IDictionary<string, string> options = null)
148  {
149  this.options = options ?? new Dictionary<string, string>();
150  } // end constructor
151  } // end class AdminShowJobsRequest
152 
157  {
161  public struct Info
162  {
166  public const string JOB_TAG = "job_tag";
167 
169  public const string WORKER_INFO = "worker_info";
170  } // end struct Info
171 
172  public IList<long> job_id { get; set; } = new List<long>();
173 
174  public IList<string> status { get; set; } = new List<string>();
175 
176  public IList<string> endpoint_name { get; set; } = new List<string>();
177 
178  public IList<long> time_received { get; set; } = new List<long>();
179 
180  public IList<string> auth_id { get; set; } = new List<string>();
181 
182  public IList<string> source_ip { get; set; } = new List<string>();
183 
184  public IList<string> query_text { get; set; } = new List<string>();
185 
186  public IList<string> user_data { get; set; } = new List<string>();
187 
188  public IList<string> flags { get; set; } = new List<string>();
189 
205  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
206  } // end class AdminShowJobsResponse
207 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
const string JOB_TAG
The job tag specified by the user or if unspecified by user, an internally generated unique identifie...
A set of string constants for the parameter options.
A set of results returned by Kinetica.adminShowJobs.
A set of string constants for the parameter info.
const string SHOW_ASYNC_JOBS
If TRUE, then the completed async jobs are also included in the response.
IDictionary< string, string > info
Additional information.
const string WORKER_INFO
Worker job information as json
const string SHOW_WORKER_INFO
If TRUE, then information is also returned from worker ranks.
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.