Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
20  {
21 
24  public string proc_name { get; set; }
25 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
30 
33  public DeleteProcRequest() { }
34 
43  public DeleteProcRequest( string proc_name,
44  IDictionary<string, string> options = null)
45  {
46  this.proc_name = proc_name ?? "";
47  this.options = options ?? new Dictionary<string, string>();
48  } // end constructor
49 
50  } // end class DeleteProcRequest
51 
52 
53 
58  {
59 
62  public string proc_name { get; set; }
63 
65  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
66 
67  } // end class DeleteProcResponse
68 
69 
70 
71 
72 } // end namespace kinetica
DeleteProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a DeleteProcRequest object with the specified parameters.
Definition: DeleteProc.cs:43
string proc_name
Name of the proc to be deleted.
Definition: DeleteProc.cs:24
IDictionary< string, string > options
Optional parameters.
Definition: DeleteProc.cs:28
A set of parameters for Kinetica.deleteProc(string,IDictionary{string, string}).
Definition: DeleteProc.cs:19
string proc_name
Value of .
Definition: DeleteProc.cs:62
IDictionary< string, string > info
Additional information.
Definition: DeleteProc.cs:65
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
DeleteProcRequest()
Constructs a DeleteProcRequest object with default parameters.
Definition: DeleteProc.cs:33
A set of results returned by Kinetica.deleteProc(string,IDictionary{string, string}).
Definition: DeleteProc.cs:57