Kinetica C# API  Version 6.0.1.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 
19  {
20 
23  public string proc_name { get; set; }
24 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public DeleteProcRequest() { }
32 
40  public DeleteProcRequest( string proc_name,
41  IDictionary<string, string> options = null)
42  {
43  this.proc_name = proc_name ?? "";
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46 
47  } // end class DeleteProcRequest
48 
49 
50 
53  {
54 
57  public string proc_name { get; set; }
58 
59  } // end class DeleteProcResponse
60 
61 
62 
63 
64 } // end namespace kinetica
DeleteProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a DeleteProcRequest object with the specified parameters.
Definition: DeleteProc.cs:40
string proc_name
Name of the proc to be deleted.
Definition: DeleteProc.cs:23
IDictionary< string, string > options
Optional parameters.
Definition: DeleteProc.cs:26
A set of parameters for /delete/proc.
Definition: DeleteProc.cs:18
string proc_name
Value of .
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:31
A set of results returned by /delete/proc.
Definition: DeleteProc.cs:52