Kinetica   C#   API  Version 7.2.3.0
HasTable.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 {
17  {
22  public string table_name { get; set; }
23 
27  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
28 
31  public HasTableRequest() { }
32 
42  public HasTableRequest( string table_name,
43  IDictionary<string, string> options = null)
44  {
45  this.table_name = table_name ?? "";
46  this.options = options ?? new Dictionary<string, string>();
47  } // end constructor
48  } // end class HasTableRequest
49 
54  {
59  public struct TableExists
60  {
61  public const string TRUE = "true";
62  public const string FALSE = "false";
63  } // end struct TableExists
64 
67  public string table_name { get; set; }
68 
79  public bool table_exists { get; set; }
80 
82  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
83  } // end class HasTableResponse
84 } // end namespace kinetica
string table_name
Value of table_name
Definition: HasTable.cs:67
A set of string constants for the parameter table_exists.
Definition: HasTable.cs:59
A set of results returned by Kinetica.hasTable.
Definition: HasTable.cs:53
IDictionary< string, string > info
Additional information.
Definition: HasTable.cs:82
HasTableRequest()
Constructs a HasTableRequest object with default parameters.
Definition: HasTable.cs:31
HasTableRequest(string table_name, IDictionary< string, string > options=null)
Constructs a HasTableRequest object with the specified parameters.
Definition: HasTable.cs:42
IDictionary< string, string > options
Optional parameters.
Definition: HasTable.cs:27
string table_name
Name of the table to check for existence, in [schema_name.
Definition: HasTable.cs:22
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
bool table_exists
Indicates whether the table exists or not.
Definition: HasTable.cs:79
A set of parameters for Kinetica.hasTable.
Definition: HasTable.cs:16