Kinetica C# API  Version 6.2.0.1
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 
65  public struct Options
66  {
67 
82  public const string REBUILD_ON_ERROR = "rebuild_on_error";
83  public const string TRUE = "true";
84  public const string FALSE = "false";
85 
100  public const string VERIFY_PERSIST = "verify_persist";
101  } // end struct Options
102 
103 
144  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
145 
146 
149  public AdminVerifyDbRequest() { }
150 
195  public AdminVerifyDbRequest( IDictionary<string, string> options = null)
196  {
197  this.options = options ?? new Dictionary<string, string>();
198  } // end constructor
199 
200  } // end class AdminVerifyDbRequest
201 
202 
203 
208  {
209 
212  public bool verified_ok { get; set; } = false;
213 
217  public IList<string> error_list { get; set; } = new List<string>();
218 
219  } // end class AdminVerifyDbResponse
220 
221 
222 
223 
224 } // end namespace kinetica
const string REBUILD_ON_ERROR
Supported values: TRUE FALSE The default value is 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.
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.