Kinetica C# API  Version 6.1.0.0
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 
75  public string proc_name { get; set; } = "";
76 
101  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
102 
103 
106  public ShowProcRequest() { }
107 
139  public ShowProcRequest( string proc_name = null,
140  IDictionary<string, string> options = null)
141  {
142  this.proc_name = proc_name ?? "";
143  this.options = options ?? new Dictionary<string, string>();
144  } // end constructor
145 
146  } // end class ShowProcRequest
147 
148 
149 
154  {
155 
163  public struct ExecutionModes
164  {
165 
167  public const string DISTRIBUTED = "distributed";
168 
170  public const string NONDISTRIBUTED = "nondistributed";
171  } // end struct ExecutionModes
172 
173 
175  public IList<string> proc_names { get; set; } = new List<string>();
176 
182  public IList<string> execution_modes { get; set; } = new List<string>();
183 
186  public IList<IDictionary<string, byte[]>> files { get; set; } = new List<IDictionary<string, byte[]>>();
187 
191  public IList<string> commands { get; set; } = new List<string>();
192 
196  public IList<IList<string>> args { get; set; } = new List<IList<string>>();
197 
200  public IList<IDictionary<string, string>> options { get; set; } = new List<IDictionary<string, string>>();
201 
202  } // end class ShowProcResponse
203 
204 
205 
206 
207 } // end namespace kinetica
The execution modes of the procs named in <member name="proc_names">.
Definition: ShowProc.cs:163
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
Definition: ShowProc.cs:139
IDictionary< string, string > options
Optional parameters.
Definition: ShowProc.cs:101
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
Definition: ShowProc.cs:106
string proc_name
Name of the proc to show information about.
Definition: ShowProc.cs:75
A set of parameters for Kinetica.showProc(string,IDictionary<string, string>).
Definition: ShowProc.cs:18
A set of results returned by Kinetica.showProc(string,IDictionary<string, string>).
Definition: ShowProc.cs:153
const string INCLUDE_FILES
If set to true, the files that make up the proc will be returned.
Definition: ShowProc.cs:66
Optional parameters.
Definition: ShowProc.cs:47
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14