Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
KillProc.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 
58  public struct Options
59  {
60 
69  public const string RUN_TAG = "run_tag";
70 
92  public const string CLEAR_EXECUTE_AT_STARTUP = "clear_execute_at_startup";
93  public const string TRUE = "true";
94  public const string FALSE = "false";
95  } // end struct Options
96 
97 
102  public string run_id { get; set; } = "";
103 
139  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
140 
141 
144  public KillProcRequest() { }
145 
190  public KillProcRequest( string run_id = null,
191  IDictionary<string, string> options = null)
192  {
193  this.run_id = run_id ?? "";
194  this.options = options ?? new Dictionary<string, string>();
195  } // end constructor
196 
197  } // end class KillProcRequest
198 
199 
200 
205  {
206 
209  public IList<string> run_ids { get; set; } = new List<string>();
210 
212  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
213 
214  } // end class KillProcResponse
215 
216 
217 
218 
219 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:139
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:190
Optional parameters.
Definition: KillProc.cs:58
string run_id
The run ID of a running proc instance.
Definition: KillProc.cs:102
IList< string > run_ids
List of run IDs of proc instances that were killed.
Definition: KillProc.cs:209
A set of results returned by Kinetica.killProc(string,IDictionary{string, string}).
Definition: KillProc.cs:204
IDictionary< string, string > info
Additional information.
Definition: KillProc.cs:212
A set of parameters for Kinetica.killProc(string,IDictionary{string, string}).
Definition: KillProc.cs:18
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string RUN_TAG
If run_id is specified, kill the proc instance that has a matching run ID and a matching run tag that...
Definition: KillProc.cs:69
KillProcRequest()
Constructs a KillProcRequest object with default parameters.
Definition: KillProc.cs:144
const string CLEAR_EXECUTE_AT_STARTUP
If true, kill and remove the instance of the proc matching the auto-start run ID that was created to ...
Definition: KillProc.cs:92