Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminOffline.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 
19  {
20 
26  public struct Offline
27  {
28  public const string TRUE = "true";
29  public const string FALSE = "false";
30  } // end struct Offline
31 
32 
36  public bool offline { get; set; }
37 
39  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
40 
41 
44  public AdminOfflineRequest() { }
45 
55  IDictionary<string, string> options = null)
56  {
57  this.offline = offline;
58  this.options = options ?? new Dictionary<string, string>();
59  } // end constructor
60 
61  } // end class AdminOfflineRequest
62 
63 
64 
67  {
68 
71  public bool is_offline { get; set; }
72 
73  } // end class AdminOfflineResponse
74 
75 
76 
77 
78 } // end namespace kinetica
Set to true if desired state is offline.
Definition: AdminOffline.cs:26
AdminOfflineRequest()
Constructs an AdminOfflineRequest object with default parameters.
Definition: AdminOffline.cs:44
IDictionary< string, string > options
Optional parameters.
Definition: AdminOffline.cs:39
bool offline
Set to true if desired state is offline.
Definition: AdminOffline.cs:36
bool is_offline
Returns true if the system is offline, or false otherwise.
Definition: AdminOffline.cs:71
AdminOfflineRequest(bool offline, IDictionary< string, string > options=null)
Constructs an AdminOfflineRequest object with the specified parameters.
Definition: AdminOffline.cs:54
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by /admin/offline.
Definition: AdminOffline.cs:66
A set of parameters for /admin/offline.
Definition: AdminOffline.cs:18