Kinetica C# API  Version 7.1.10.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_AS = "execute_as";
170 
173  public const string EXECUTE_INTERVAL = "execute_interval";
174 
177  public const string EXECUTE_START_TIME = "execute_start_time";
178 
181  public const string EXECUTE_STOP_TIME = "execute_stop_time";
182  } // end struct AdditionalInfo
183 
184 
187  public IList<string> procedure_names { get; set; } = new List<string>();
188 
191  public IList<string> procedure_definitions { get; set; } = new List<string>();
192 
198  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
199 
201  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
202 
203  } // end class ShowSqlProcResponse
204 
205 
206 
207 
208 } // end namespace kinetica
IList< string > procedure_definitions
A list of the definitions for the requested procedures.
Definition: ShowSqlProc.cs:191
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:187
const string EXECUTE_STOP_TIME
Time at which the periodic execution stops.
Definition: ShowSqlProc.cs:181
ShowSqlProcRequest(string procedure_name=null, IDictionary< string, string > options=null)
Constructs a ShowSqlProcRequest object with the specified parameters.
Definition: ShowSqlProc.cs:140
const string EXECUTE_AS
The periodic execution impersonate user.
Definition: ShowSqlProc.cs:169
IDictionary< string, string > info
Additional information.
Definition: ShowSqlProc.cs:201
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:177
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in the requested procedures.
Definition: ShowSqlProc.cs:198
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