Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
18 {
22  public struct Options
23  {
38  public const string NO_ERROR_IF_NOT_EXISTS = "no_error_if_not_exists";
39 
40  public const string TRUE = "true";
41  public const string FALSE = "false";
42  } // end struct Options
43 
48  public string schema_name { get; set; }
49 
75  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
76 
79  public ShowSchemaRequest() { }
80 
112  IDictionary<string, string> options = null)
113  {
114  this.schema_name = schema_name ?? "";
115  this.options = options ?? new Dictionary<string, string>();
116  } // end constructor
117 } // end class ShowSchemaRequest
118 
123 {
126  public string schema_name { get; set; }
127 
130  public IList<string> schema_names { get; set; } = new List<string>();
131 
134  public IList<IList<string>> schema_tables { get; set; } = new List<IList<string>>();
135 
138  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
139 
141  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
142 } // end class ShowSchemaResponse
ShowSchemaRequest()
Constructs a ShowSchemaRequest object with default parameters.
Definition: ShowSchema.cs:79
ShowSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a ShowSchemaRequest object with the specified parameters.
Definition: ShowSchema.cs:111
string schema_name
Name of the schema for which to retrieve the information.
Definition: ShowSchema.cs:48
string schema_name
Value of schema_name.
Definition: ShowSchema.cs:126
IDictionary< string, string > info
Additional information.
Definition: ShowSchema.cs:141
IList< IList< string > > schema_tables
An array of arrays containing a list of tables in each of the respective schema_names.
Definition: ShowSchema.cs:134
IDictionary< string, string > options
Optional parameters.
Definition: ShowSchema.cs:75
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string NO_ERROR_IF_NOT_EXISTS
If FALSE will return an error if the provided schema_name does not exist.
Definition: ShowSchema.cs:38
A set of results returned by Kinetica.showSchema.
Definition: ShowSchema.cs:122
IList< string > schema_names
A list of all schema names for which information is returned.
Definition: ShowSchema.cs:130
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in schema_names.
Definition: ShowSchema.cs:138
A set of parameters for Kinetica.showSchema.
Definition: ShowSchema.cs:17
A set of string constants for the parameter options.
Definition: ShowSchema.cs:22