Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
20  {
21 
24  public string exit_type { get; set; }
25 
27  public string authorization { get; set; }
28 
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32 
35  public AdminShutdownRequest() { }
36 
47  string authorization,
48  IDictionary<string, string> options = null)
49  {
50  this.exit_type = exit_type ?? "";
51  this.authorization = authorization ?? "";
52  this.options = options ?? new Dictionary<string, string>();
53  } // end constructor
54 
55  } // end class AdminShutdownRequest
56 
57 
58 
63  {
64 
66  public string exit_status { get; set; }
67 
68  } // end class AdminShutdownResponse
69 
70 
71 
72 
73 } // 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 Kinetica.adminShutdown(string,string,IDictionary<string, string>).
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.adminShutdown(string,string,IDictionary<string, string>).
string authorization
No longer used. User can pass an empty string.
AdminShutdownRequest()
Constructs an AdminShutdownRequest object with default parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14