Kinetica C# API  Version 7.0.19.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 
37  public struct Options
38  {
39 
48  public const string RUN_TAG = "run_tag";
49  } // end struct Options
50 
51 
56  public string run_id { get; set; } = "";
57 
72  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
73 
74 
77  public KillProcRequest() { }
78 
102  public KillProcRequest( string run_id = null,
103  IDictionary<string, string> options = null)
104  {
105  this.run_id = run_id ?? "";
106  this.options = options ?? new Dictionary<string, string>();
107  } // end constructor
108 
109  } // end class KillProcRequest
110 
111 
112 
117  {
118 
121  public IList<string> run_ids { get; set; } = new List<string>();
122 
124  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
125 
126  } // end class KillProcResponse
127 
128 
129 
130 
131 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:72
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:102
Optional parameters.
Definition: KillProc.cs:37
string run_id
The run ID of a running proc instance.
Definition: KillProc.cs:56
IList< string > run_ids
List of run IDs of proc instances that were killed.
Definition: KillProc.cs:121
A set of results returned by Kinetica.killProc(string,IDictionary{string, string}).
Definition: KillProc.cs:116
IDictionary< string, string > info
Additional information.
Definition: KillProc.cs:124
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:48
KillProcRequest()
Constructs a KillProcRequest object with default parameters.
Definition: KillProc.cs:77