Kinetica C# API  Version 7.0.19.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 
47  public struct Options
48  {
49 
66  public const string SHOW_ASYNC_JOBS = "show_async_jobs";
67  public const string TRUE = "true";
68  public const string FALSE = "false";
69  } // end struct Options
70 
71 
96  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
97 
98 
101  public AdminShowJobsRequest() { }
102 
131  public AdminShowJobsRequest( IDictionary<string, string> options = null)
132  {
133  this.options = options ?? new Dictionary<string, string>();
134  } // end constructor
135 
136  } // end class AdminShowJobsRequest
137 
138 
139 
144  {
145  public IList<long> job_id { get; set; } = new List<long>();
146  public IList<string> status { get; set; } = new List<string>();
147  public IList<string> endpoint_name { get; set; } = new List<string>();
148  public IList<long> time_received { get; set; } = new List<long>();
149  public IList<string> auth_id { get; set; } = new List<string>();
150  public IList<string> source_ip { get; set; } = new List<string>();
151  public IList<string> user_data { get; set; } = new List<string>();
152 
154  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
155 
156  } // end class AdminShowJobsResponse
157 
158 
159 
160 
161 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
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.
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}).