Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
17  {
21  public struct Options
22  {
37  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
38 
39  public const string TRUE = "true";
40  public const string FALSE = "false";
41  } // end struct Options
42 
47  public string procedure_name { get; set; } = "";
48 
73  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
74 
77  public ShowSqlProcRequest() { }
78 
109  public ShowSqlProcRequest( string procedure_name = null,
110  IDictionary<string, string> options = null)
111  {
112  this.procedure_name = procedure_name ?? "";
113  this.options = options ?? new Dictionary<string, string>();
114  } // end constructor
115  } // end class ShowSqlProcRequest
116 
121  {
126  public struct AdditionalInfo
127  {
130  public const string EXECUTE_AS = "execute_as";
131 
134  public const string EXECUTE_INTERVAL = "execute_interval";
135 
139  public const string EXECUTE_START_TIME = "execute_start_time";
140 
143  public const string EXECUTE_STOP_TIME = "execute_stop_time";
144  } // end struct AdditionalInfo
145 
147  public IList<string> procedure_names { get; set; } = new List<string>();
148 
151  public IList<string> procedure_definitions { get; set; } = new List<string>();
152 
184  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
185 
187  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
188  } // end class ShowSqlProcResponse
189 } // end namespace kinetica
IList< string > procedure_definitions
A list of the definitions for the requested procedures.
Definition: ShowSqlProc.cs:151
const string NO_ERROR_IF_NOT_EXISTS
If TRUE, no error will be returned if the requested procedure does not exist.
Definition: ShowSqlProc.cs:37
string procedure_name
Name of the procedure for which to retrieve the information.
Definition: ShowSqlProc.cs:47
IList< string > procedure_names
A list of the names of the requested procedures.
Definition: ShowSqlProc.cs:147
const string EXECUTE_STOP_TIME
Time at which the periodic execution stops.
Definition: ShowSqlProc.cs:143
ShowSqlProcRequest(string procedure_name=null, IDictionary< string, string > options=null)
Constructs a ShowSqlProcRequest object with the specified parameters.
Definition: ShowSqlProc.cs:109
const string EXECUTE_AS
The periodic execution impersonate user.
Definition: ShowSqlProc.cs:130
IDictionary< string, string > info
Additional information.
Definition: ShowSqlProc.cs:187
IDictionary< string, string > options
Optional parameters.
Definition: ShowSqlProc.cs:73
ShowSqlProcRequest()
Constructs a ShowSqlProcRequest object with default parameters.
Definition: ShowSqlProc.cs:77
A set of results returned by Kinetica.showSqlProc.
Definition: ShowSqlProc.cs:120
A set of string constants for the parameter additional_info.
Definition: ShowSqlProc.cs:126
const string EXECUTE_START_TIME
The initial date/time that periodic execution began.
Definition: ShowSqlProc.cs:139
A set of string constants for the parameter options.
Definition: ShowSqlProc.cs:21
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in the requested procedures.
Definition: ShowSqlProc.cs:184
A set of parameters for Kinetica.showSqlProc.
Definition: ShowSqlProc.cs:16
const string EXECUTE_INTERVAL
The periodic execution interval in seconds.
Definition: ShowSqlProc.cs:134
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14