Kinetica C# API  Version 6.0.1.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 
18  {
19 
24  public string run_id { get; set; } = "";
25 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public KillProcRequest() { }
33 
43  public KillProcRequest( string run_id = null,
44  IDictionary<string, string> options = null)
45  {
46  this.run_id = run_id ?? "";
47  this.options = options ?? new Dictionary<string, string>();
48  } // end constructor
49 
50  } // end class KillProcRequest
51 
52 
53 
56  {
57 
60  public IList<string> run_ids { get; set; } = new List<string>();
61 
62  } // end class KillProcResponse
63 
64 
65 
66 
67 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: KillProc.cs:27
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
Definition: KillProc.cs:43
string run_id
The run ID of the running proc instance.
Definition: KillProc.cs:24
IList< string > run_ids
List of run IDs of proc instances that were killed.
Definition: KillProc.cs:60
A set of results returned by /kill/proc.
Definition: KillProc.cs:55
A set of parameters for /kill/proc.
Definition: KillProc.cs:17
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
KillProcRequest()
Constructs a KillProcRequest object with default parameters.
Definition: KillProc.cs:32