Kinetica C# API  Version 6.0.1.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 
19  {
20 
23  public IList<string> table_names { get; set; } = new List<string>();
24 
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
32 
40  public ShowTableMetadataRequest( IList<string> table_names,
41  IDictionary<string, string> options = null)
42  {
43  this.table_names = table_names ?? new List<string>();
44  this.options = options ?? new Dictionary<string, string>();
45  } // end constructor
46 
47  } // end class ShowTableMetadataRequest
48 
49 
50 
53  {
54 
57  public IList<string> table_names { get; set; } = new List<string>();
58 
64  public IList<IDictionary<string, string>> metadata_maps { get; set; } = new List<IDictionary<string, string>>();
65 
66  } // end class ShowTableMetadataResponse
67 
68 
69 
70 
71 } // end namespace kinetica
A set of results returned by /show/table/metadata.
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 /show/table/metadata.
IList< string > table_names
Tables whose metadata will be fetched.
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > table_names
Value of .