Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
16  {
20  public struct Options
21  {
35  public const string INCLUDE_FILES = "include_files";
36 
37  public const string TRUE = "true";
38  public const string FALSE = "false";
39  } // end struct Options
40 
45  public string proc_name { get; set; } = "";
46 
70  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
71 
74  public ShowProcRequest() { }
75 
106  public ShowProcRequest( string proc_name = null,
107  IDictionary<string, string> options = null)
108  {
109  this.proc_name = proc_name ?? "";
110  this.options = options ?? new Dictionary<string, string>();
111  } // end constructor
112  } // end class ShowProcRequest
113 
118  {
123  public struct ExecutionModes
124  {
126  public const string DISTRIBUTED = "distributed";
127 
129  public const string NONDISTRIBUTED = "nondistributed";
130  } // end struct ExecutionModes
131 
133  public IList<string> proc_names { get; set; } = new List<string>();
134 
151  public IList<string> execution_modes { get; set; } = new List<string>();
152 
155  public IList<IDictionary<string, byte[]>> files { get; set; } = new List<IDictionary<string, byte[]>>();
156 
160  public IList<string> commands { get; set; } = new List<string>();
161 
165  public IList<IList<string>> args { get; set; } = new List<IList<string>>();
166 
169  public IList<IDictionary<string, string>> options { get; set; } = new List<IDictionary<string, string>>();
170 
172  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
173  } // end class ShowProcResponse
174 } // end namespace kinetica
const string NONDISTRIBUTED
Nondistributed
Definition: ShowProc.cs:129
A set of string constants for the parameter execution_modes.
Definition: ShowProc.cs:123
const string DISTRIBUTED
Distributed
Definition: ShowProc.cs:126
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
Definition: ShowProc.cs:106
IList< string > execution_modes
The execution modes of the procs named in proc_names.
Definition: ShowProc.cs:151
IList< string > commands
The commands (excluding arguments) that will be invoked when the procs named in proc_names are execut...
Definition: ShowProc.cs:160
IDictionary< string, string > options
Optional parameters.
Definition: ShowProc.cs:70
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
Definition: ShowProc.cs:74
IList< IDictionary< string, byte[]> > files
Maps of the files that make up the procs named in proc_names.
Definition: ShowProc.cs:155
IList< IDictionary< string, string > > options
The optional parameters for the procs named in proc_names.
Definition: ShowProc.cs:169
string proc_name
Name of the proc to show information about.
Definition: ShowProc.cs:45
A set of parameters for Kinetica.showProc.
Definition: ShowProc.cs:15
IDictionary< string, string > info
Additional information.
Definition: ShowProc.cs:172
IList< IList< string > > args
Arrays of command-line arguments that will be passed to the procs named in proc_names when executed.
Definition: ShowProc.cs:165
A set of results returned by Kinetica.showProc.
Definition: ShowProc.cs:117
const string INCLUDE_FILES
If set to TRUE, the files that make up the proc will be returned.
Definition: ShowProc.cs:35
IList< string > proc_names
The proc names.
Definition: ShowProc.cs:133
A set of string constants for the parameter options.
Definition: ShowProc.cs:20
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14