7 using System.Collections.Generic;
67 public const string TRUE =
"true";
68 public const string FALSE =
"false";
102 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
142 IDictionary<string, string>
options = null)
145 this.options =
options ??
new Dictionary<string, string>();
177 public IList<string>
proc_names {
get; set; } =
new List<string>();
188 public IList<IDictionary<string, byte[]>>
files {
get; set; } =
new List<IDictionary<string, byte[]>>();
193 public IList<string>
commands {
get; set; } =
new List<string>();
198 public IList<IList<string>>
args {
get; set; } =
new List<IList<string>>();
202 public IList<IDictionary<string, string>>
options {
get; set; } =
new List<IDictionary<string, string>>();
205 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string NONDISTRIBUTED
Nondistributed
The execution modes of the procs named in <member name="proc_names">.
const string DISTRIBUTED
Distributed
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
IList< string > execution_modes
The execution modes of the procs named in <member name="proc_names">.
IList< string > commands
The commands (excluding arguments) that will be invoked when the procs named in <member name="proc_na...
IDictionary< string, string > options
Optional parameters.
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
IList< IDictionary< string, byte[]> > files
Maps of the files that make up the procs named in <member name="proc_names">.
IList< IDictionary< string, string > > options
The optional parameters for the procs named in <member name="proc_names">.
string proc_name
Name of the proc to show information about.
A set of parameters for Kinetica.showProc(string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
IList< IList< string > > args
Arrays of command-line arguments that will be passed to the procs named in <member name="proc_names">...
A set of results returned by Kinetica.showProc(string,IDictionary{string, string}).
const string INCLUDE_FILES
If set to true, the files that make up the proc will be returned.
IList< string > proc_names
The proc names.
KineticaData - class to help with Avro Encoding for Kinetica