Kinetica   C#   API  Version 7.2.3.0
ShowTablesByType.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 {
21  {
25  public string type_id { get; set; }
26 
29  public string label { get; set; }
30 
34  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
35 
39 
52  string label,
53  IDictionary<string, string> options = null)
54  {
55  this.type_id = type_id ?? "";
56  this.label = label ?? "";
57  this.options = options ?? new Dictionary<string, string>();
58  } // end constructor
59  } // end class ShowTablesByTypeRequest
60 
65  {
67  public IList<string> table_names { get; set; } = new List<string>();
68 
70  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
71  } // end class ShowTablesByTypeResponse
72 } // end namespace kinetica
ShowTablesByTypeRequest(string type_id, string label, IDictionary< string, string > options=null)
Constructs a ShowTablesByTypeRequest object with the specified parameters.
string type_id
Type id returned by a call to Kinetica.createType.
IDictionary< string, string > options
Optional parameters.
ShowTablesByTypeRequest()
Constructs a ShowTablesByTypeRequest object with default parameters.
string label
Optional user supplied label which can be used instead of the type_id to retrieve all tables with the...
A set of results returned by Kinetica.showTablesByType.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.showTablesByType.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > table_names
List of tables matching the input criteria.