Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
25  public string run_id { get; set; } = "";
26 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
30 
33  public KillProcRequest() { }
34 
44  public KillProcRequest( string run_id = null,
45  IDictionary<string, string> options = null)
46  {
47  this.run_id = run_id ?? "";
48  this.options = options ?? new Dictionary<string, string>();
49  } // end constructor
50 
51  } // end class KillProcRequest
52 
53 
54 
59  {
60 
63  public IList<string> run_ids { get; set; } = new List<string>();
64 
65  } // end class KillProcResponse
66 
67 
68 
69 
70 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:28
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:44
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:58
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:33