Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
16  {
20  public struct Options
21  {
32  public const string RUN_TAG = "run_tag";
33 
48  public const string CLEAR_EXECUTE_AT_STARTUP = "clear_execute_at_startup";
49 
50  public const string TRUE = "true";
51  public const string FALSE = "false";
52  } // end struct Options
53 
59  public string run_id { get; set; } = "";
60 
99  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
100 
103  public KillProcRequest() { }
104 
152  public KillProcRequest( string run_id = null,
153  IDictionary<string, string> options = null)
154  {
155  this.run_id = run_id ?? "";
156  this.options = options ?? new Dictionary<string, string>();
157  } // end constructor
158  } // end class KillProcRequest
159 
164  {
167  public IList<string> run_ids { get; set; } = new List<string>();
168 
170  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
171  } // end class KillProcResponse
172 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:99
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:152
A set of string constants for the parameter options.
Definition: KillProc.cs:20
string run_id
The run ID of a running proc instance.
Definition: KillProc.cs:59
IList< string > run_ids
List of run IDs of proc instances that were killed.
Definition: KillProc.cs:167
A set of results returned by Kinetica.killProc.
Definition: KillProc.cs:163
IDictionary< string, string > info
Additional information.
Definition: KillProc.cs:170
A set of parameters for Kinetica.killProc.
Definition: KillProc.cs:15
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:32
KillProcRequest()
Constructs a KillProcRequest object with default parameters.
Definition: KillProc.cs:103
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:48