7 using System.Collections.Generic;
56 public string run_id {
get; set; } =
"";
72 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
103 IDictionary<string, string>
options = null)
105 this.run_id =
run_id ??
"";
106 this.options =
options ??
new Dictionary<string, string>();
121 public IList<string>
run_ids {
get; set; } =
new List<string>();
124 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IDictionary< string, string > options
Optional parameters.
KillProcRequest(string run_id=null, IDictionary< string, string > options=null)
Constructs a KillProcRequest object with the specified parameters.
string run_id
The run ID of a running proc instance.
IList< string > run_ids
List of run IDs of proc instances that were killed.
A set of results returned by Kinetica.killProc(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.killProc(string,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
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...
KillProcRequest()
Constructs a KillProcRequest object with default parameters.