Kinetica C# API  Version 6.0.1.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 
18  {
19 
21  public string proc_name { get; set; }
22 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
26 
29  public HasProcRequest() { }
30 
38  public HasProcRequest( string proc_name,
39  IDictionary<string, string> options = null)
40  {
41  this.proc_name = proc_name ?? "";
42  this.options = options ?? new Dictionary<string, string>();
43  } // end constructor
44 
45  } // end class HasProcRequest
46 
47 
48 
51  {
52 
58  public struct ProcExists
59  {
60  public const string TRUE = "true";
61  public const string FALSE = "false";
62  } // end struct ProcExists
63 
64 
67  public string proc_name { get; set; }
68 
72  public bool proc_exists { get; set; }
73 
74  } // end class HasProcResponse
75 
76 
77 
78 
79 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: HasProc.cs:24
HasProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a HasProcRequest object with the specified parameters.
Definition: HasProc.cs:38
A set of parameters for /has/proc.
Definition: HasProc.cs:17
string proc_name
Name of the proc to check for existence.
Definition: HasProc.cs:21
bool proc_exists
Indicates whether the proc exists or not.
Definition: HasProc.cs:72
A set of results returned by /has/proc.
Definition: HasProc.cs:50
string proc_name
Value of
Definition: HasProc.cs:67
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
Indicates whether the proc exists or not.
Definition: HasProc.cs:58
HasProcRequest()
Constructs a HasProcRequest object with default parameters.
Definition: HasProc.cs:29