7 using System.Collections.Generic;
16 public class ShowSqlProcRequest : KineticaData
39 public const string TRUE =
"true";
40 public const string FALSE =
"false";
73 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
110 IDictionary<string, string>
options =
null)
120 public class ShowSqlProcResponse : KineticaData
126 public struct AdditionalInfo
130 public const string EXECUTE_AS =
"execute_as";
147 public IList<string>
procedure_names {
get;
set; } =
new List<string>();
184 public IList<IDictionary<string, string>>
additional_info {
get;
set; } =
new List<IDictionary<string, string>>();
187 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string EXECUTE_AS
The periodic execution impersonate user.
const string EXECUTE_INTERVAL
The periodic execution interval in seconds.
IList< string > procedure_definitions
A list of the definitions for the requested procedures.
ShowSqlProcRequest(string procedure_name=null, IDictionary< string, string > options=null)
Constructs a ShowSqlProcRequest object with the specified parameters.
string procedure_name
Name of the procedure for which to retrieve the information.
IDictionary< string, string > info
Additional information.
ShowSqlProcRequest()
Constructs a ShowSqlProcRequest object with default parameters.
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in the requested procedures.
const string EXECUTE_STOP_TIME
Time at which the periodic execution stops.
const string EXECUTE_START_TIME
The initial date/time that periodic execution began.
IList< string > procedure_names
A list of the names of the requested procedures.
const string NO_ERROR_IF_NOT_EXISTS
If TRUE, no error will be returned if the requested procedure does not exist.
IDictionary< string, string > options
Optional parameters.