Kinetica   C#   API  Version 7.2.3.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 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 
159  public IList<string> commands { get; set; } = new List<string>();
160 
163  public IList<IList<string>> args { get; set; } = new List<IList<string>>();
164 
167  public IList<IDictionary<string, string>> options { get; set; } = new List<IDictionary<string, string>>();
168 
170  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
171 } // end class ShowProcResponse
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > commands
The commands (excluding arguments) that will be invoked when the procs named in proc_names are execut...
Definition: ShowProc.cs:159
IList< IDictionary< string, string > > options
The optional parameters for the procs named in proc_names.
Definition: ShowProc.cs:167
IDictionary< string, string > info
Additional information.
Definition: ShowProc.cs:170
const string DISTRIBUTED
Distributed
Definition: ShowProc.cs:126
const string INCLUDE_FILES
If set to TRUE, the files that make up the proc will be returned.
Definition: ShowProc.cs:35
const string TRUE
Definition: ShowProc.cs:37
string proc_name
Name of the proc to show information about.
Definition: ShowProc.cs:45
A set of string constants for the parameter options.
Definition: ShowProc.cs:20
ShowProcRequest(string proc_name=null, IDictionary< string, string > options=null)
Constructs a ShowProcRequest object with the specified parameters.
Definition: ShowProc.cs:106
IDictionary< string, string > options
Optional parameters.
Definition: ShowProc.cs:70
IList< string > execution_modes
The execution modes of the procs named in proc_names.
Definition: ShowProc.cs:151
IList< IDictionary< string, byte[]> > files
Maps of the files that make up the procs named in proc_names.
Definition: ShowProc.cs:155
A set of parameters for Kinetica.showProc.
Definition: ShowProc.cs:15
ShowProcRequest()
Constructs a ShowProcRequest object with default parameters.
Definition: ShowProc.cs:74
A set of string constants for the parameter execution_modes.
Definition: ShowProc.cs:123
IList< string > proc_names
The proc names.
Definition: ShowProc.cs:133
const string FALSE
Definition: ShowProc.cs:38
A set of results returned by Kinetica.showProc.
Definition: ShowProc.cs:117
const string NONDISTRIBUTED
Nondistributed
Definition: ShowProc.cs:129
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:163