Kinetica   C#   API  Version 7.2.3.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 namespace kinetica;
10 
16 {
20  public struct Options
21  {
35  public const string SHOW_ASYNC_JOBS = "show_async_jobs";
36 
37  public const string TRUE = "true";
38  public const string FALSE = "false";
39 
51  public const string SHOW_WORKER_INFO = "show_worker_info";
52  } // end struct Options
53 
93  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
94 
97  public AdminShowJobsRequest() { }
98 
141  public AdminShowJobsRequest( IDictionary<string, string> options = null)
142  {
143  this.options = options ?? new Dictionary<string, string>();
144  } // end constructor
145 } // end class AdminShowJobsRequest
146 
151 {
155  public struct Info
156  {
160  public const string JOB_TAG = "job_tag";
161 
163  public const string WORKER_INFO = "worker_info";
164  } // end struct Info
165 
166  public IList<long> job_id { get; set; } = new List<long>();
167 
168  public IList<string> status { get; set; } = new List<string>();
169 
170  public IList<string> endpoint_name { get; set; } = new List<string>();
171 
172  public IList<long> time_received { get; set; } = new List<long>();
173 
174  public IList<string> auth_id { get; set; } = new List<string>();
175 
176  public IList<string> source_ip { get; set; } = new List<string>();
177 
178  public IList<string> query_text { get; set; } = new List<string>();
179 
180  public IList<string> user_data { get; set; } = new List<string>();
181 
182  public IList<string> flags { get; set; } = new List<string>();
183 
198  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
199 } // end class AdminShowJobsResponse
IList< string > flags
IList< string > auth_id
AdminShowJobsRequest()
Constructs an AdminShowJobsRequest object with default parameters.
A set of string constants for the parameter info.
const string WORKER_INFO
Worker job information as JSON.
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string JOB_TAG
The job tag specified by the user or if unspecified by user, an internally generated unique identifie...
IList< string > query_text
IList< long > job_id
A set of string constants for the parameter options.
IList< long > time_received
IDictionary< string, string > options
Optional parameters.
IList< string > source_ip
A set of results returned by Kinetica.adminShowJobs.
const string SHOW_WORKER_INFO
If TRUE, then information is also returned from worker ranks.
IList< string > endpoint_name
A set of parameters for Kinetica.adminShowJobs.
const string SHOW_ASYNC_JOBS
If TRUE, then the completed async jobs are also included in the response.
IList< string > status
IList< string > user_data
AdminShowJobsRequest(IDictionary< string, string > options=null)
Constructs an AdminShowJobsRequest object with the specified parameters.