Kinetica C# API  Version 6.0.1.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminVerifyDb.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 
23  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
24 
25 
28  public AdminVerifyDbRequest() { }
29 
35  public AdminVerifyDbRequest( IDictionary<string, string> options = null)
36  {
37  this.options = options ?? new Dictionary<string, string>();
38  } // end constructor
39 
40  } // end class AdminVerifyDbRequest
41 
42 
43 
46  {
47 
49  public bool verified_ok { get; set; } = false;
50 
53  public IList<string> error_list { get; set; } = new List<string>();
54 
55  } // end class AdminVerifyDbResponse
56 
57 
58 
59 
60 } // end namespace kinetica
IList< string > error_list
List of errors found while validating the database internal state.
AdminVerifyDbRequest(IDictionary< string, string > options=null)
Constructs an AdminVerifyDbRequest object with the specified parameters.
bool verified_ok
True if no errors were found, false otherwise.
IDictionary< string, string > options
Optional parameters.
A set of results returned by /admin/verifydb.
A set of parameters for /admin/verifydb.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AdminVerifyDbRequest()
Constructs an AdminVerifyDbRequest object with default parameters.