Kinetica   C#   API  Version 7.2.3.1
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  {
31  public const string RUN_TAG = "run_tag";
32 
47  public const string CLEAR_EXECUTE_AT_STARTUP = "clear_execute_at_startup";
48 
49  public const string TRUE = "true";
50  public const string FALSE = "false";
51  } // end struct Options
52 
58  public string run_id { get; set; } = "";
59 
98  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
99 
102  public KillProcRequest() { }
103 
149  public KillProcRequest( string run_id = null,
150  IDictionary<string, string> options = null)
151  {
152  this.run_id = run_id ?? "";
153  this.options = options ?? new Dictionary<string, string>();
154  } // end constructor
155 } // end class KillProcRequest
156 
161 {
163  public IList<string> run_ids { get; set; } = new List<string>();
164 
166  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
167 } // end class KillProcResponse
IList< string > run_ids
List of run IDs of proc instances that were killed.
Definition: KillProc.cs:163
A set of parameters for Kinetica.killProc.
Definition: KillProc.cs:15
A set of string constants for the parameter options.
Definition: KillProc.cs:20
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string TRUE
Definition: KillProc.cs:49
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:47
const string FALSE
Definition: KillProc.cs:50
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:98
A set of results returned by Kinetica.killProc.
Definition: KillProc.cs:160
KillProcRequest()
Constructs a KillProcRequest object with default parameters.
Definition: KillProc.cs:102
string run_id
The run ID of a running proc instance.
Definition: KillProc.cs:58
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:31
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:149
IDictionary< string, string > info
Additional information.
Definition: KillProc.cs:166