Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
16  {
19  public string exit_type { get; set; }
20 
23  public string authorization { get; set; }
24 
28  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
29 
32  public AdminShutdownRequest() { }
33 
44  string authorization,
45  IDictionary<string, string> options = null)
46  {
47  this.exit_type = exit_type ?? "";
48  this.authorization = authorization ?? "";
49  this.options = options ?? new Dictionary<string, string>();
50  } // end constructor
51  } // end class AdminShutdownRequest
52 
57  {
59  public string exit_status { get; set; }
60 
62  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
63  } // end class AdminShutdownResponse
64 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
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 Kinetica.adminShutdown.
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.adminShutdown.
string authorization
No longer used.
string exit_status
'OK' 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