Kinetica C# API  Version 6.1.0.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 
10 
11 namespace kinetica
12 {
13 
19  {
20 
22  public string table_name { get; set; }
23 
25  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
26 
27 
30  public HasTableRequest() { }
31 
39  public HasTableRequest( string table_name,
40  IDictionary<string, string> options = null)
41  {
42  this.table_name = table_name ?? "";
43  this.options = options ?? new Dictionary<string, string>();
44  } // end constructor
45 
46  } // end class HasTableRequest
47 
48 
49 
54  {
55 
70  public struct TableExists
71  {
72  public const string TRUE = "true";
73  public const string FALSE = "false";
74  } // end struct TableExists
75 
76 
79  public string table_name { get; set; }
80 
93  public bool table_exists { get; set; }
94 
95  } // end class HasTableResponse
96 
97 
98 
99 
100 } // end namespace kinetica
Indicates whether the table exists or not.
Definition: HasTable.cs:70
A set of results returned by Kinetica.hasTable(string,IDictionary<string, string>).
Definition: HasTable.cs:53
HasTableRequest()
Constructs a HasTableRequest object with default parameters.
Definition: HasTable.cs:30
HasTableRequest(string table_name, IDictionary< string, string > options=null)
Constructs a HasTableRequest object with the specified parameters.
Definition: HasTable.cs:39
IDictionary< string, string > options
Optional parameters.
Definition: HasTable.cs:25
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
A set of parameters for Kinetica.hasTable(string,IDictionary<string, string>).
Definition: HasTable.cs:18