Kinetica   C#   API  Version 7.2.3.0
CheckTable.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 namespace kinetica
10 {
24  {
28  public struct Options
29  {
43  public const string LOCAL_ONLY = "local_only";
44 
45  public const string TRUE = "true";
46  public const string FALSE = "false";
47 
61  public const string SHOW_DETAIL = "show_detail";
62  } // end struct Options
63 
66  public IList<string> table_names { get; set; } = new List<string>();
67 
106  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
107 
110  public CheckTableRequest() { }
111 
155  public CheckTableRequest( IList<string> table_names,
156  IDictionary<string, string> options = null)
157  {
158  this.table_names = table_names ?? new List<string>();
159  this.options = options ?? new Dictionary<string, string>();
160  } // end constructor
161  } // end class CheckTableRequest
162 
167  {
168  public IList<string> table_names { get; set; } = new List<string>();
169 
170  public IList<string> ids { get; set; } = new List<string>();
171 
172  public IList<string> locations { get; set; } = new List<string>();
173 
174  public IList<string> errors { get; set; } = new List<string>();
175 
179  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
180  } // end class CheckTableResponse
181 } // end namespace kinetica
IList< string > locations
Definition: CheckTable.cs:172
const string SHOW_DETAIL
If TRUE reports individual chunk errors.
Definition: CheckTable.cs:61
A set of results returned by Kinetica.checkTable.
Definition: CheckTable.cs:166
IDictionary< string, string > options
Optional parameters.
Definition: CheckTable.cs:106
const string LOCAL_ONLY
If TRUE only locally persisted files will be checked.
Definition: CheckTable.cs:43
CheckTableRequest()
Constructs a CheckTableRequest object with default parameters.
Definition: CheckTable.cs:110
A set of string constants for the parameter options.
Definition: CheckTable.cs:28
IList< string > table_names
Definition: CheckTable.cs:168
IList< string > errors
Definition: CheckTable.cs:174
CheckTableRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a CheckTableRequest object with the specified parameters.
Definition: CheckTable.cs:155
IList< string > table_names
List of tables to query.
Definition: CheckTable.cs:66
IDictionary< string, string > info
Additional information.
Definition: CheckTable.cs:179
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of parameters for Kinetica.checkTable.
Definition: CheckTable.cs:23