Kinetica   C#   API  Version 7.2.3.0
ShowTableMetadata.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 {
17  {
24  public IList<string> table_names { get; set; } = new List<string>();
25 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
34 
45  public ShowTableMetadataRequest( IList<string> table_names,
46  IDictionary<string, string> options = null)
47  {
48  this.table_names = table_names ?? new List<string>();
49  this.options = options ?? new Dictionary<string, string>();
50  } // end constructor
51  } // end class ShowTableMetadataRequest
52 
57  {
61  public IList<string> table_names { get; set; } = new List<string>();
62 
69  public IList<IDictionary<string, string>> metadata_maps { get; set; } = new List<IDictionary<string, string>>();
70 
72  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
73  } // end class ShowTableMetadataResponse
74 } // end namespace kinetica
A set of results returned by Kinetica.showTableMetadata.
ShowTableMetadataRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowTableMetadataRequest object with the specified parameters.
ShowTableMetadataRequest()
Constructs a ShowTableMetadataRequest object with default parameters.
IList< IDictionary< string, string > > metadata_maps
A list of maps which contain the metadata of the tables in the order the tables are listed in table_n...
A set of parameters for Kinetica.showTableMetadata.
IList< string > table_names
Names of tables whose metadata will be fetched, in [schema_name.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IDictionary< string, string > info
Additional information.
IList< string > table_names
Value of table_names.