Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
22  public string table_name { get; set; }
23 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public HasTableRequest() { }
32 
41  public HasTableRequest( string table_name,
42  IDictionary<string, string> options = null)
43  {
44  this.table_name = table_name ?? "";
45  this.options = options ?? new Dictionary<string, string>();
46  } // end constructor
47 
48  } // end class HasTableRequest
49 
50 
51 
56  {
57 
72  public struct TableExists
73  {
74  public const string TRUE = "true";
75  public const string FALSE = "false";
76  } // end struct TableExists
77 
78 
81  public string table_name { get; set; }
82 
95  public bool table_exists { get; set; }
96 
98  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
99 
100  } // end class HasTableResponse
101 
102 
103 
104 
105 } // end namespace kinetica
string table_name
Value of
Definition: HasTable.cs:81
Indicates whether the table exists or not.
Definition: HasTable.cs:72
A set of results returned by Kinetica.hasTable(string,IDictionary{string, string}).
Definition: HasTable.cs:55
IDictionary< string, string > info
Additional information.
Definition: HasTable.cs:98
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:41
IDictionary< string, string > options
Optional parameters.
Definition: HasTable.cs:26
string table_name
Name of the table to check for existence.
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:95
A set of parameters for Kinetica.hasTable(string,IDictionary{string, string}).
Definition: HasTable.cs:18