Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowProc.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 
47  public struct Options
48  {
49 
66  public const string INCLUDE_FILES = "include_files";
67  public const string TRUE = "true";
68  public const string FALSE = "false";
69  } // end struct Options
70 
71 
76  public string proc_name { get; set; } = "";
77 
102  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
103 
104 
107  public ShowProcRequest() { }
108 
141  public ShowProcRequest( string proc_name = null,
142  IDictionary<string, string> options = null)
143  {
144  this.proc_name = proc_name ?? "";
145  this.options = options ?? new Dictionary<string, string>();
146  } // end constructor
147 
148  } // end class ShowProcRequest
149 
150 
151 
156  {
157 
165  public struct ExecutionModes
166  {
167 
169  public const string DISTRIBUTED = "distributed";
170 
172  public const string NONDISTRIBUTED = "nondistributed";
173  } // end struct ExecutionModes
174 
175 
177  public IList<string> proc_names { get; set; } = new List<string>();
178 
184  public IList<string> execution_modes { get; set; } = new List<string>();
185 
188  public IList<IDictionary<string, byte[]>> files { get; set; } = new List<IDictionary<string, byte[]>>();
189 
193  public IList<string> commands { get; set; } = new List<string>();
194 
198  public IList<IList<string>> args { get; set; } = new List<IList<string>>();
199 
202  public IList<IDictionary<string, string>> options { get; set; } = new List<IDictionary<string, string>>();
203 
205  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
206 
207  } // end class ShowProcResponse
208 
209 
210 
211 
212 } // end namespace kinetica
const string NONDISTRIBUTED
Nondistributed
Definition: ShowProc.cs:172
The execution modes of the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:165
const string DISTRIBUTED
Distributed
Definition: ShowProc.cs:169
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
Definition: ShowProc.cs:141
IList< string > execution_modes
The execution modes of the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:184
IList< string > commands
The commands (excluding arguments) that will be invoked when the procs named in &lt;member name=&quot;proc_na...
Definition: ShowProc.cs:193
IDictionary< string, string > options
Optional parameters.
Definition: ShowProc.cs:102
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
Definition: ShowProc.cs:107
IList< IDictionary< string, byte[]> > files
Maps of the files that make up the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:188
IList< IDictionary< string, string > > options
The optional parameters for the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:202
string proc_name
Name of the proc to show information about.
Definition: ShowProc.cs:76
A set of parameters for Kinetica.showProc(string,IDictionary{string, string}).
Definition: ShowProc.cs:18
IDictionary< string, string > info
Additional information.
Definition: ShowProc.cs:205
IList< IList< string > > args
Arrays of command-line arguments that will be passed to the procs named in &lt;member name=&quot;proc_names&quot;&gt;...
Definition: ShowProc.cs:198
A set of results returned by Kinetica.showProc(string,IDictionary{string, string}).
Definition: ShowProc.cs:155
const string INCLUDE_FILES
If set to true, the files that make up the proc will be returned.
Definition: ShowProc.cs:66
IList< string > proc_names
The proc names.
Definition: ShowProc.cs:177
Optional parameters.
Definition: ShowProc.cs:47
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14