Kinetica C# API  Version 6.0.1.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 
18  {
19 
33  public struct Options
34  {
35 
40  public const string INCLUDE_FILES = "include_files";
41  public const string TRUE = "true";
42  public const string FALSE = "false";
43  } // end struct Options
44 
45 
49  public string proc_name { get; set; } = "";
50 
62  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
63 
64 
67  public ShowProcRequest() { }
68 
87  public ShowProcRequest( string proc_name = null,
88  IDictionary<string, string> options = null)
89  {
90  this.proc_name = proc_name ?? "";
91  this.options = options ?? new Dictionary<string, string>();
92  } // end constructor
93 
94  } // end class ShowProcRequest
95 
96 
97 
100  {
101 
107  public struct ExecutionModes
108  {
109 
111  public const string DISTRIBUTED = "distributed";
112 
114  public const string NONDISTRIBUTED = "nondistributed";
115  } // end struct ExecutionModes
116 
117 
119  public IList<string> proc_names { get; set; } = new List<string>();
120 
124  public IList<string> execution_modes { get; set; } = new List<string>();
125 
128  public IList<IDictionary<string, byte[]>> files { get; set; } = new List<IDictionary<string, byte[]>>();
129 
133  public IList<string> commands { get; set; } = new List<string>();
134 
138  public IList<IList<string>> args { get; set; } = new List<IList<string>>();
139 
142  public IList<IDictionary<string, string>> options { get; set; } = new List<IDictionary<string, string>>();
143 
144  } // end class ShowProcResponse
145 
146 
147 
148 
149 } // end namespace kinetica
const string NONDISTRIBUTED
Nondistributed
Definition: ShowProc.cs:114
The execution modes of the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:107
const string DISTRIBUTED
Distributed
Definition: ShowProc.cs:111
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
Definition: ShowProc.cs:87
IList< string > execution_modes
The execution modes of the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:124
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:133
IDictionary< string, string > options
Optional parameters.
Definition: ShowProc.cs:62
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
Definition: ShowProc.cs:67
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:128
IList< IDictionary< string, string > > options
The optional parameters for the procs named in &lt;member name=&quot;proc_names&quot;&gt;.
Definition: ShowProc.cs:142
string proc_name
Name of the proc to show information about.
Definition: ShowProc.cs:49
A set of parameters for /show/proc.
Definition: ShowProc.cs:17
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:138
A set of results returned by /show/proc.
Definition: ShowProc.cs:99
const string INCLUDE_FILES
If set to true, the files that make up the proc will be returned.
Definition: ShowProc.cs:40
IList< string > proc_names
The proc names.
Definition: ShowProc.cs:119
Optional parameters.
Definition: ShowProc.cs:33
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14