Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowSqlProc.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 
20  {
21 
48  public struct Options
49  {
50 
67  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
68  public const string TRUE = "true";
69  public const string FALSE = "false";
70  } // end struct Options
71 
72 
76  public string procedure_name { get; set; } = "";
77 
102  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
103 
104 
107  public ShowSqlProcRequest() { }
108 
140  public ShowSqlProcRequest( string procedure_name = null,
141  IDictionary<string, string> options = null)
142  {
143  this.procedure_name = procedure_name ?? "";
144  this.options = options ?? new Dictionary<string, string>();
145  } // end constructor
146 
147  } // end class ShowSqlProcRequest
148 
149 
150 
155  {
156 
164  public struct AdditionalInfo
165  {
166 
169  public const string EXECUTE_START_TIME = "execute_start_time";
170 
173  public const string EXECUTE_INTERVAL = "execute_interval";
174  } // end struct AdditionalInfo
175 
176 
179  public IList<string> procedure_names { get; set; } = new List<string>();
180 
183  public IList<string> procedure_definitions { get; set; } = new List<string>();
184 
190  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
191 
193  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
194 
195  } // end class ShowSqlProcResponse
196 
197 
198 
199 
200 } // end namespace kinetica
IList< string > procedure_definitions
A list of the definitions for the requested procedures.
Definition: ShowSqlProc.cs:183
const string NO_ERROR_IF_NOT_EXISTS
If true, no error will be returned if the requested procedure does not exist.
Definition: ShowSqlProc.cs:67
string procedure_name
Name of the procedure for which to retrieve the information.
Definition: ShowSqlProc.cs:76
IList< string > procedure_names
A list of the names of the requested procedures.
Definition: ShowSqlProc.cs:179
ShowSqlProcRequest(string procedure_name=null, IDictionary< string, string > options=null)
Constructs a ShowSqlProcRequest object with the specified parameters.
Definition: ShowSqlProc.cs:140
IDictionary< string, string > info
Additional information.
Definition: ShowSqlProc.cs:193
IDictionary< string, string > options
Optional parameters.
Definition: ShowSqlProc.cs:102
ShowSqlProcRequest()
Constructs a ShowSqlProcRequest object with default parameters.
Definition: ShowSqlProc.cs:107
A set of results returned by Kinetica.showSqlProc(string,IDictionary{string, string}).
Definition: ShowSqlProc.cs:154
Additional information about the respective tables in the requested procedures.
Definition: ShowSqlProc.cs:164
const string EXECUTE_START_TIME
The initial date/time that periodic execution began.
Definition: ShowSqlProc.cs:169
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in the requested procedures.
Definition: ShowSqlProc.cs:190
A set of parameters for Kinetica.showSqlProc(string,IDictionary{string, string}). ...
Definition: ShowSqlProc.cs:19
const string EXECUTE_INTERVAL
The periodic execution interval in seconds.
Definition: ShowSqlProc.cs:173
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14