Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
28  public IList<string> table_names { get; set; } = new List<string>();
29 
32  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
33 
34 
38 
50  public ShowTableMetadataRequest( IList<string> table_names,
51  IDictionary<string, string> options = null)
52  {
53  this.table_names = table_names ?? new List<string>();
54  this.options = options ?? new Dictionary<string, string>();
55  } // end constructor
56 
57  } // end class ShowTableMetadataRequest
58 
59 
60 
65  {
66 
69  public IList<string> table_names { get; set; } = new List<string>();
70 
76  public IList<IDictionary<string, string>> metadata_maps { get; set; } = new List<IDictionary<string, string>>();
77 
79  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
80 
81  } // end class ShowTableMetadataResponse
82 
83 
84 
85 
86 } // end namespace kinetica
A set of results returned by Kinetica.showTableMetadata(IList{string},IDictionary{string, string}).
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 ...
A set of parameters for Kinetica.showTableMetadata(IList{string},IDictionary{string, string}).
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 .