Kinetica C# API  Version 6.0.1.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 
18  {
19 
21  public string table_name { get; set; }
22 
24  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
25 
26 
29  public HasTableRequest() { }
30 
38  public HasTableRequest( string table_name,
39  IDictionary<string, string> options = null)
40  {
41  this.table_name = table_name ?? "";
42  this.options = options ?? new Dictionary<string, string>();
43  } // end constructor
44 
45  } // end class HasTableRequest
46 
47 
48 
51  {
52 
58  public struct TableExists
59  {
60  public const string TRUE = "true";
61  public const string FALSE = "false";
62  } // end struct TableExists
63 
64 
67  public string table_name { get; set; }
68 
72  public bool table_exists { get; set; }
73 
74  } // end class HasTableResponse
75 
76 
77 
78 
79 } // end namespace kinetica
string table_name
Value of
Definition: HasTable.cs:67
Indicates whether the table exists or not.
Definition: HasTable.cs:58
A set of results returned by /has/table.
Definition: HasTable.cs:50
HasTableRequest()
Constructs a HasTableRequest object with default parameters.
Definition: HasTable.cs:29
HasTableRequest(string table_name, IDictionary< string, string > options=null)
Constructs a HasTableRequest object with the specified parameters.
Definition: HasTable.cs:38
IDictionary< string, string > options
Optional parameters.
Definition: HasTable.cs:24
string table_name
Name of the table to check for existence.
Definition: HasTable.cs:21
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:72
A set of parameters for /has/table.
Definition: HasTable.cs:17