Kinetica C# API  Version 6.2.0.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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
25  public string run_id { get; set; } = "";
26 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
34  public KillProcRequest() { }
35 
46  public KillProcRequest( string run_id = null,
47  IDictionary<string, string> options = null)
48  {
49  this.run_id = run_id ?? "";
50  this.options = options ?? new Dictionary<string, string>();
51  } // end constructor
52 
53  } // end class KillProcRequest
54 
55 
56 
61  {
62 
65  public IList<string> run_ids { get; set; } = new List<string>();
66 
67  } // end class KillProcResponse
68 
69 
70 
71 
72 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:29
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:46
string run_id
The run ID of the running proc instance.
Definition: KillProc.cs:25
A set of results returned by Kinetica.killProc(string,IDictionary<string, string>).
Definition: KillProc.cs:60
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
KillProcRequest()
Constructs a KillProcRequest object with default parameters.
Definition: KillProc.cs:34