Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
24  {
25 
27  public string type_id { get; set; }
28 
32  public string label { get; set; }
33 
36  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
37 
38 
42 
55  string label,
56  IDictionary<string, string> options = null)
57  {
58  this.type_id = type_id ?? "";
59  this.label = label ?? "";
60  this.options = options ?? new Dictionary<string, string>();
61  } // end constructor
62 
63  } // end class ShowTablesByTypeRequest
64 
65 
66 
71  {
72 
74  public IList<string> table_names { get; set; } = new List<string>();
75 
77  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
78 
79  } // end class ShowTablesByTypeResponse
80 
81 
82 
83 
84 } // 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 /create/type.
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(string,string,IDictionary{string, string}).
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.showTablesByType(string,string,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
IList< string > table_names
List of tables matching the input criteria.