Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
HasProc.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 
19  {
20 
22  public string proc_name { get; set; }
23 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public HasProcRequest() { }
32 
41  public HasProcRequest( string proc_name,
42  IDictionary<string, string> options = null)
43  {
44  this.proc_name = proc_name ?? "";
45  this.options = options ?? new Dictionary<string, string>();
46  } // end constructor
47 
48  } // end class HasProcRequest
49 
50 
51 
56  {
57 
72  public struct ProcExists
73  {
74  public const string TRUE = "true";
75  public const string FALSE = "false";
76  } // end struct ProcExists
77 
78 
81  public string proc_name { get; set; }
82 
95  public bool proc_exists { get; set; }
96 
98  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
99 
100  } // end class HasProcResponse
101 
102 
103 
104 
105 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: HasProc.cs:26
HasProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a HasProcRequest object with the specified parameters.
Definition: HasProc.cs:41
A set of parameters for Kinetica.hasProc(string,IDictionary{string, string}).
Definition: HasProc.cs:18
string proc_name
Name of the proc to check for existence.
Definition: HasProc.cs:22
IDictionary< string, string > info
Additional information.
Definition: HasProc.cs:98
bool proc_exists
Indicates whether the proc exists or not.
Definition: HasProc.cs:95
A set of results returned by Kinetica.hasProc(string,IDictionary{string, string}).
Definition: HasProc.cs:55
string proc_name
Value of
Definition: HasProc.cs:81
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
Indicates whether the proc exists or not.
Definition: HasProc.cs:72
HasProcRequest()
Constructs a HasProcRequest object with default parameters.
Definition: HasProc.cs:31