Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminAlterJobs.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 
27  {
28 
39  public struct Action
40  {
41  public const string CANCEL = "cancel";
42  } // end struct Action
43 
44 
57  public struct Options
58  {
59 
61  public const string JOB_TAG = "job_tag";
62  } // end struct Options
63 
64 
66  public IList<long> job_ids { get; set; } = new List<long>();
67 
76  public string action { get; set; }
77 
88  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
89 
90 
93  public AdminAlterJobsRequest() { }
94 
119  public AdminAlterJobsRequest( IList<long> job_ids,
120  string action,
121  IDictionary<string, string> options = null)
122  {
123  this.job_ids = job_ids ?? new List<long>();
124  this.action = action ?? "";
125  this.options = options ?? new Dictionary<string, string>();
126  } // end constructor
127 
128  } // end class AdminAlterJobsRequest
129 
130 
131 
136  {
137 
139  public IList<long> job_ids { get; set; } = new List<long>();
140 
142  public string action { get; set; }
143 
145  public IList<string> status { get; set; } = new List<string>();
146 
148  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
149 
150  } // end class AdminAlterJobsResponse
151 
152 
153 
154 
155 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
IList< long > job_ids
Jobs to be modified.
Action to be performed on the jobs specified by job_ids.
AdminAlterJobsRequest()
Constructs an AdminAlterJobsRequest object with default parameters.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.adminAlterJobs(IList{long},string,IDictionary{string, string}).
A set of results returned by Kinetica.adminAlterJobs(IList{long},string,IDictionary{string, string}).
string action
Action requested on the jobs.
AdminAlterJobsRequest(IList< long > job_ids, string action, IDictionary< string, string > options=null)
Constructs an AdminAlterJobsRequest object with the specified parameters.
IList< long > job_ids
Jobs on which the action was performed.
IList< string > status
Status of the requested action for each job.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string JOB_TAG
Job tag returned in call to create the job
string action
Action to be performed on the jobs specified by job_ids.