Kinetica C# API  Version 6.2.0.1
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 
25  public IList<string> table_names { get; set; } = new List<string>();
26 
29  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
30 
31 
35 
44  public ShowTableMetadataRequest( IList<string> table_names,
45  IDictionary<string, string> options = null)
46  {
47  this.table_names = table_names ?? new List<string>();
48  this.options = options ?? new Dictionary<string, string>();
49  } // end constructor
50 
51  } // end class ShowTableMetadataRequest
52 
53 
54 
59  {
60 
63  public IList<string> table_names { get; set; } = new List<string>();
64 
70  public IList<IDictionary<string, string>> metadata_maps { get; set; } = new List<IDictionary<string, string>>();
71 
72  } // end class ShowTableMetadataResponse
73 
74 
75 
76 
77 } // 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.
A set of parameters for Kinetica.showTableMetadata(IList<string>,IDictionary<string, string>).
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