Kinetica   C#   API  Version 7.2.3.1
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 
23 {
27  public struct Options
28  {
42  public const string LOCAL_ONLY = "local_only";
43 
44  public const string TRUE = "true";
45  public const string FALSE = "false";
46 
60  public const string SHOW_DETAIL = "show_detail";
61  } // end struct Options
62 
65  public IList<string> table_names { get; set; } = new List<string>();
66 
103  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
104 
107  public CheckTableRequest() { }
108 
150  public CheckTableRequest( IList<string> table_names,
151  IDictionary<string, string> options = null)
152  {
153  this.table_names = table_names ?? new List<string>();
154  this.options = options ?? new Dictionary<string, string>();
155  } // end constructor
156 } // end class CheckTableRequest
157 
162 {
163  public IList<string> table_names { get; set; } = new List<string>();
164 
165  public IList<string> ids { get; set; } = new List<string>();
166 
167  public IList<string> locations { get; set; } = new List<string>();
168 
169  public IList<string> errors { get; set; } = new List<string>();
170 
174  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
175 } // end class CheckTableResponse
A set of string constants for the parameter options.
Definition: CheckTable.cs:27
const string LOCAL_ONLY
If TRUE only locally persisted files will be checked.
Definition: CheckTable.cs:42
CheckTableRequest()
Constructs a CheckTableRequest object with default parameters.
Definition: CheckTable.cs:107
IDictionary< string, string > info
Additional information.
Definition: CheckTable.cs:174
IList< string > locations
Definition: CheckTable.cs:167
A set of parameters for Kinetica.checkTable.
Definition: CheckTable.cs:22
IList< string > table_names
List of tables to query.
Definition: CheckTable.cs:65
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > errors
Definition: CheckTable.cs:169
IList< string > table_names
Definition: CheckTable.cs:163
const string SHOW_DETAIL
If TRUE reports individual chunk errors.
Definition: CheckTable.cs:60
IList< string > ids
Definition: CheckTable.cs:165
IDictionary< string, string > options
Optional parameters.
Definition: CheckTable.cs:103
CheckTableRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a CheckTableRequest object with the specified parameters.
Definition: CheckTable.cs:150
A set of results returned by Kinetica.checkTable.
Definition: CheckTable.cs:161