Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowSchema.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 
21  {
22 
51  public struct Options
52  {
53 
71  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
72  public const string TRUE = "true";
73  public const string FALSE = "false";
74  } // end struct Options
75 
76 
79  public string schema_name { get; set; }
80 
107  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
108 
109 
112  public ShowSchemaRequest() { }
113 
148  IDictionary<string, string> options = null)
149  {
150  this.schema_name = schema_name ?? "";
151  this.options = options ?? new Dictionary<string, string>();
152  } // end constructor
153 
154  } // end class ShowSchemaRequest
155 
156 
157 
162  {
163 
166  public string schema_name { get; set; }
167 
170  public IList<string> schema_names { get; set; } = new List<string>();
171 
174  public IList<IList<string>> schema_tables { get; set; } = new List<IList<string>>();
175 
178  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
179 
181  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
182 
183  } // end class ShowSchemaResponse
184 
185 
186 
187 
188 } // end namespace kinetica
const string NO_ERROR_IF_NOT_EXISTS
If false will return an error if the provided schema_name does not exist.
Definition: ShowSchema.cs:71
string schema_name
Value of .
Definition: ShowSchema.cs:166
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in &lt;member name=&quot;schema_names&quot;&gt;.
Definition: ShowSchema.cs:178
ShowSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a ShowSchemaRequest object with the specified parameters.
Definition: ShowSchema.cs:147
IDictionary< string, string > info
Additional information.
Definition: ShowSchema.cs:181
IDictionary< string, string > options
Optional parameters.
Definition: ShowSchema.cs:107
A set of results returned by Kinetica.showSchema(string,IDictionary{string, string}).
Definition: ShowSchema.cs:161
A set of parameters for Kinetica.showSchema(string,IDictionary{string, string}).
Definition: ShowSchema.cs:20
string schema_name
Name of the schema for which to retrieve the information.
Definition: ShowSchema.cs:79
IList< IList< string > > schema_tables
An array of arrays containing a list of tables in each of the respective &lt;member name=&quot;schema_names&quot;&gt;...
Definition: ShowSchema.cs:174
IList< string > schema_names
A list of all schema names for which information is returned
Definition: ShowSchema.cs:170
ShowSchemaRequest()
Constructs a ShowSchemaRequest object with default parameters.
Definition: ShowSchema.cs:112
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14