Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminShutdown.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 
18  {
19 
22  public string exit_type { get; set; }
23 
25  public string authorization { get; set; }
26 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
30 
33  public AdminShutdownRequest() { }
34 
45  string authorization,
46  IDictionary<string, string> options = null)
47  {
48  this.exit_type = exit_type ?? "";
49  this.authorization = authorization ?? "";
50  this.options = options ?? new Dictionary<string, string>();
51  } // end constructor
52 
53  } // end class AdminShutdownRequest
54 
55 
56 
59  {
60 
62  public string exit_status { get; set; }
63 
64  } // end class AdminShutdownResponse
65 
66 
67 
68 
69 } // end namespace kinetica
string exit_type
Reserved for future use.
AdminShutdownRequest(string exit_type, string authorization, IDictionary< string, string > options=null)
Constructs an AdminShutdownRequest object with the specified parameters.
A set of parameters for /admin/shutdown.
IDictionary< string, string > options
Optional parameters.
A set of results returned by /admin/shutdown.
string authorization
No longer used. User can pass an empty string.
string exit_status
&#39;OK&#39; upon (right before) successful exit.
AdminShutdownRequest()
Constructs an AdminShutdownRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14