Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
20  {
21 
24  public string proc_name { get; set; }
25 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
29 
32  public DeleteProcRequest() { }
33 
41  public DeleteProcRequest( string proc_name,
42  IDictionary<string, string> options = null)
43  {
44  this.proc_name = proc_name ?? "";
45  this.options = options ?? new Dictionary<string, string>();
46  } // end constructor
47 
48  } // end class DeleteProcRequest
49 
50 
51 
56  {
57 
60  public string proc_name { get; set; }
61 
62  } // end class DeleteProcResponse
63 
64 
65 
66 
67 } // end namespace kinetica
DeleteProcRequest(string proc_name, IDictionary< string, string > options=null)
Constructs a DeleteProcRequest object with the specified parameters.
Definition: DeleteProc.cs:41
string proc_name
Name of the proc to be deleted.
Definition: DeleteProc.cs:24
IDictionary< string, string > options
Optional parameters.
Definition: DeleteProc.cs:27
A set of parameters for Kinetica.deleteProc(string,IDictionary<string, string>).
Definition: DeleteProc.cs:19
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
DeleteProcRequest()
Constructs a DeleteProcRequest object with default parameters.
Definition: DeleteProc.cs:32
A set of results returned by Kinetica.deleteProc(string,IDictionary<string, string>).
Definition: DeleteProc.cs:55