Kinetica C# API  Version 6.1.0.0
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 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
27 
30  public HasProcRequest() { }
31 
39  public HasProcRequest( string proc_name,
40  IDictionary<string, string> options = null)
41  {
42  this.proc_name = proc_name ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45 
46  } // end class HasProcRequest
47 
48 
49 
54  {
55 
70  public struct ProcExists
71  {
72  public const string TRUE = "true";
73  public const string FALSE = "false";
74  } // end struct ProcExists
75 
76 
79  public string proc_name { get; set; }
80 
93  public bool proc_exists { get; set; }
94 
95  } // end class HasProcResponse
96 
97 
98 
99 
100 } // end namespace kinetica
IDictionary< string, string > options
Optional parameters.
Definition: HasProc.cs:25
HasProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a HasProcRequest object with the specified parameters.
Definition: HasProc.cs:39
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
A set of results returned by Kinetica.hasProc(string,IDictionary<string, string>).
Definition: HasProc.cs:53
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
Indicates whether the proc exists or not.
Definition: HasProc.cs:70
HasProcRequest()
Constructs a HasProcRequest object with default parameters.
Definition: HasProc.cs:30