Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
65  public struct Options
66  {
67 
84  public const string SHOW_ASYNC_JOBS = "show_async_jobs";
85  public const string TRUE = "true";
86  public const string FALSE = "false";
87 
102  public const string SHOW_WORKER_INFO = "show_worker_info";
103  } // end struct Options
104 
105 
148  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
149 
150 
153  public AdminShowJobsRequest() { }
154 
201  public AdminShowJobsRequest( IDictionary<string, string> options = null)
202  {
203  this.options = options ?? new Dictionary<string, string>();
204  } // end constructor
205 
206  } // end class AdminShowJobsRequest
207 
208 
209 
214  {
215 
234  public struct Info
235  {
236 
240  public const string JOB_TAG = "job_tag";
241 
243  public const string WORKER_INFO = "worker_info";
244  } // end struct Info
245 
246  public IList<long> job_id { get; set; } = new List<long>();
247  public IList<string> status { get; set; } = new List<string>();
248  public IList<string> endpoint_name { get; set; } = new List<string>();
249  public IList<long> time_received { get; set; } = new List<long>();
250  public IList<string> auth_id { get; set; } = new List<string>();
251  public IList<string> source_ip { get; set; } = new List<string>();
252  public IList<string> user_data { get; set; } = new List<string>();
253  public IList<string> flags { get; set; } = new List<string>();
254 
271  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
272 
273  } // end class AdminShowJobsResponse
274 
275 
276 
277 
278 } // 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 results returned by Kinetica.adminShowJobs(IDictionary{string, string}). ...
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(IDictionary{string, string}).