Kinetica   C#   API  Version 7.2.3.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 namespace kinetica
10 {
17  {
19  public string proc_name { get; set; }
20 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
28  public HasProcRequest() { }
29 
37  public HasProcRequest( string proc_name,
38  IDictionary<string, string> options = null)
39  {
40  this.proc_name = proc_name ?? "";
41  this.options = options ?? new Dictionary<string, string>();
42  } // end constructor
43  } // end class HasProcRequest
44 
49  {
54  public struct ProcExists
55  {
56  public const string TRUE = "true";
57  public const string FALSE = "false";
58  } // end struct ProcExists
59 
62  public string proc_name { get; set; }
63 
74  public bool proc_exists { get; set; }
75 
77  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
78  } // end class HasProcResponse
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:37
A set of parameters for Kinetica.hasProc.
Definition: HasProc.cs:16
string proc_name
Name of the proc to check for existence.
Definition: HasProc.cs:19
IDictionary< string, string > info
Additional information.
Definition: HasProc.cs:77
bool proc_exists
Indicates whether the proc exists or not.
Definition: HasProc.cs:74
A set of results returned by Kinetica.hasProc.
Definition: HasProc.cs:48
string proc_name
Value of proc_name
Definition: HasProc.cs:62
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of string constants for the parameter proc_exists.
Definition: HasProc.cs:54
HasProcRequest()
Constructs a HasProcRequest object with default parameters.
Definition: HasProc.cs:28