Kinetica C# API  Version 6.1.0.0
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 
25  {
26 
37  public struct Action
38  {
39  public const string CANCEL = "cancel";
40  } // end struct Action
41 
42 
44  public IList<int> job_ids { get; set; } = new List<int>();
45 
54  public string action { get; set; }
55 
57  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
58 
59 
62  public AdminAlterJobsRequest() { }
63 
79  public AdminAlterJobsRequest( IList<int> job_ids,
80  string action,
81  IDictionary<string, string> options = null)
82  {
83  this.job_ids = job_ids ?? new List<int>();
84  this.action = action ?? "";
85  this.options = options ?? new Dictionary<string, string>();
86  } // end constructor
87 
88  } // end class AdminAlterJobsRequest
89 
90 
91 
96  {
97 
99  public IList<int> job_ids { get; set; } = new List<int>();
100 
102  public string action { get; set; }
103 
105  public IList<string> status { get; set; } = new List<string>();
106 
107  } // end class AdminAlterJobsResponse
108 
109 
110 
111 
112 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Action to be performed on the jobs specified by job_ids.
AdminAlterJobsRequest()
Constructs an AdminAlterJobsRequest object with default parameters.
A set of parameters for Kinetica.adminAlterJobs(IList<int>,string,IDictionary<string, string>).
A set of results returned by Kinetica.adminAlterJobs(IList<int>,string,IDictionary<string, string>).
IList< int > job_ids
Jobs to be modified.
AdminAlterJobsRequest(IList< int > job_ids, string action, IDictionary< string, string > options=null)
Constructs an AdminAlterJobsRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
string action
Action to be performed on the jobs specified by job_ids.