Kinetica C# API  Version 7.1.10.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 
25  public string table_name { get; set; }
26 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
34  public HasTableRequest() { }
35 
46  public HasTableRequest( string table_name,
47  IDictionary<string, string> options = null)
48  {
49  this.table_name = table_name ?? "";
50  this.options = options ?? new Dictionary<string, string>();
51  } // end constructor
52 
53  } // end class HasTableRequest
54 
55 
56 
61  {
62 
77  public struct TableExists
78  {
79  public const string TRUE = "true";
80  public const string FALSE = "false";
81  } // end struct TableExists
82 
83 
86  public string table_name { get; set; }
87 
100  public bool table_exists { get; set; }
101 
103  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
104 
105  } // end class HasTableResponse
106 
107 
108 
109 
110 } // end namespace kinetica
string table_name
Value of
Definition: HasTable.cs:86
Indicates whether the table exists or not.
Definition: HasTable.cs:77
A set of results returned by Kinetica.hasTable(string,IDictionary{string, string}).
Definition: HasTable.cs:60
IDictionary< string, string > info
Additional information.
Definition: HasTable.cs:103
HasTableRequest()
Constructs a HasTableRequest object with default parameters.
Definition: HasTable.cs:34
HasTableRequest(string table_name, IDictionary< string, string > options=null)
Constructs a HasTableRequest object with the specified parameters.
Definition: HasTable.cs:46
IDictionary< string, string > options
Optional parameters.
Definition: HasTable.cs:29
string table_name
Name of the table to check for existence, in [schema_name.
Definition: HasTable.cs:25
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:100
A set of parameters for Kinetica.hasTable(string,IDictionary{string, string}).
Definition: HasTable.cs:18