Kinetica   C#   API  Version 7.2.3.0
DeleteProc.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  {
21  public string proc_name { get; set; }
22 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
30  public DeleteProcRequest() { }
31 
39  public DeleteProcRequest( 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  } // end class DeleteProcRequest
46 
51  {
54  public string proc_name { get; set; }
55 
57  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
58  } // end class DeleteProcResponse
59 } // end namespace kinetica
DeleteProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a DeleteProcRequest object with the specified parameters.
Definition: DeleteProc.cs:39
string proc_name
Name of the proc to be deleted.
Definition: DeleteProc.cs:21
IDictionary< string, string > options
Optional parameters.
Definition: DeleteProc.cs:26
A set of parameters for Kinetica.deleteProc.
Definition: DeleteProc.cs:16
string proc_name
Value of proc_name.
Definition: DeleteProc.cs:54
IDictionary< string, string > info
Additional information.
Definition: DeleteProc.cs:57
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
DeleteProcRequest()
Constructs a DeleteProcRequest object with default parameters.
Definition: DeleteProc.cs:30
A set of results returned by Kinetica.deleteProc.
Definition: DeleteProc.cs:50