Kinetica C# API  Version 6.2.0.1
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 
31  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
32 
33 
36  public AdminShutdownRequest() { }
37 
49  string authorization,
50  IDictionary<string, string> options = null)
51  {
52  this.exit_type = exit_type ?? "";
53  this.authorization = authorization ?? "";
54  this.options = options ?? new Dictionary<string, string>();
55  } // end constructor
56 
57  } // end class AdminShutdownRequest
58 
59 
60 
65  {
66 
68  public string exit_status { get; set; }
69 
70  } // end class AdminShutdownResponse
71 
72 
73 
74 
75 } // 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