Kinetica C# API  Version 6.2.0.1
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 
204  } // end class ShowProcResponse
205 
206 
207 
208 
209 } // end namespace kinetica
The execution modes of the procs named in <member name="proc_names">.
Definition: ShowProc.cs:165
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
Definition: ShowProc.cs:141
IDictionary< string, string > options
Optional parameters.
Definition: ShowProc.cs:102
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
Definition: ShowProc.cs:107
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
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
Optional parameters.
Definition: ShowProc.cs:47
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14