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