Kinetica   C#   API  Version 7.2.3.0
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 
114  IDictionary<string, string> options = null)
115  {
116  this.schema_name = schema_name ?? "";
117  this.options = options ?? new Dictionary<string, string>();
118  } // end constructor
119  } // end class ShowSchemaRequest
120 
125  {
128  public string schema_name { get; set; }
129 
132  public IList<string> schema_names { get; set; } = new List<string>();
133 
136  public IList<IList<string>> schema_tables { get; set; } = new List<IList<string>>();
137 
140  public IList<IDictionary<string, string>> additional_info { get; set; } = new List<IDictionary<string, string>>();
141 
143  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
144  } // end class ShowSchemaResponse
145 } // 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:38
A set of string constants for the parameter options.
Definition: ShowSchema.cs:22
string schema_name
Value of schema_name.
Definition: ShowSchema.cs:128
IList< IDictionary< string, string > > additional_info
Additional information about the respective tables in schema_names.
Definition: ShowSchema.cs:140
ShowSchemaRequest(string schema_name, IDictionary< string, string > options=null)
Constructs a ShowSchemaRequest object with the specified parameters.
Definition: ShowSchema.cs:113
IDictionary< string, string > info
Additional information.
Definition: ShowSchema.cs:143
IDictionary< string, string > options
Optional parameters.
Definition: ShowSchema.cs:75
A set of results returned by Kinetica.showSchema.
Definition: ShowSchema.cs:124
A set of parameters for Kinetica.showSchema.
Definition: ShowSchema.cs:17
string schema_name
Name of the schema for which to retrieve the information.
Definition: ShowSchema.cs:48
IList< IList< string > > schema_tables
An array of arrays containing a list of tables in each of the respective schema_names.
Definition: ShowSchema.cs:136
IList< string > schema_names
A list of all schema names for which information is returned
Definition: ShowSchema.cs:132
ShowSchemaRequest()
Constructs a ShowSchemaRequest object with default parameters.
Definition: ShowSchema.cs:79
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14