Kinetica   C#   API  Version 7.2.3.1
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 
16 {
18  public string proc_name { get; set; }
19 
23  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
24 
27  public HasProcRequest() { }
28 
36  public HasProcRequest( string proc_name,
37  IDictionary<string, string> options = null)
38  {
39  this.proc_name = proc_name ?? "";
40  this.options = options ?? new Dictionary<string, string>();
41  } // end constructor
42 } // end class HasProcRequest
43 
47 {
52  public struct ProcExists
53  {
54  public const string TRUE = "true";
55  public const string FALSE = "false";
56  } // end struct ProcExists
57 
60  public string proc_name { get; set; }
61 
72  public bool proc_exists { get; set; }
73 
75  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
76 } // end class HasProcResponse
string proc_name
Value of proc_name.
Definition: HasProc.cs:60
string proc_name
Name of the proc to check for existence.
Definition: HasProc.cs:18
HasProcRequest()
Constructs a HasProcRequest object with default parameters.
Definition: HasProc.cs:27
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:52
HasProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a HasProcRequest object with the specified parameters.
Definition: HasProc.cs:36
bool proc_exists
Indicates whether the proc exists or not.
Definition: HasProc.cs:72
A set of results returned by Kinetica.hasProc.
Definition: HasProc.cs:46
const string FALSE
Definition: HasProc.cs:55
IDictionary< string, string > options
Optional parameters.
Definition: HasProc.cs:23
A set of parameters for Kinetica.hasProc.
Definition: HasProc.cs:15
IDictionary< string, string > info
Additional information.
Definition: HasProc.cs:75