Kinetica C# API  Version 7.0.19.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 
21  {
22 
123  public struct Options
124  {
125 
140  public const string REBUILD_ON_ERROR = "rebuild_on_error";
141  public const string TRUE = "true";
142  public const string FALSE = "false";
143 
159  public const string VERIFY_NULLS = "verify_nulls";
160 
175  public const string VERIFY_PERSIST = "verify_persist";
176 
193  public const string CONCURRENT_SAFE = "concurrent_safe";
194 
210  public const string VERIFY_RANK0 = "verify_rank0";
211  } // end struct Options
212 
213 
312  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
313 
314 
317  public AdminVerifyDbRequest() { }
318 
421  public AdminVerifyDbRequest( IDictionary<string, string> options = null)
422  {
423  this.options = options ?? new Dictionary<string, string>();
424  } // end constructor
425 
426  } // end class AdminVerifyDbRequest
427 
428 
429 
434  {
435 
438  public bool verified_ok { get; set; } = false;
439 
443  public IList<string> error_list { get; set; } = new List<string>();
444 
446  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
447 
448  } // end class AdminVerifyDbResponse
449 
450 
451 
452 
453 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
IList< string > error_list
List of errors found while validating the database internal state.
const string VERIFY_NULLS
When enabled, verifies that null values are set to zero Supported values: TRUE FALSE The default va...
const string REBUILD_ON_ERROR
Supported values: TRUE FALSE The default value is FALSE.
const string VERIFY_RANK0
When enabled, compares rank0 table meta-data against workers meta-data Supported values: TRUE FALSE ...
const string VERIFY_PERSIST
Supported values: TRUE FALSE The default value is FALSE.
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.
const string CONCURRENT_SAFE
When enabled, allows this endpoint to be run safely with other concurrent database operations...
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.adminVerifyDb(IDictionary{string, string}). ...
A set of parameters for Kinetica.adminVerifyDb(IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AdminVerifyDbRequest()
Constructs an AdminVerifyDbRequest object with default parameters.