Kinetica   C#   API  Version 7.2.3.0
ShowTypes.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 {
19  {
23  public struct Options
24  {
38  public const string NO_JOIN_TYPES = "no_join_types";
39 
40  public const string TRUE = "true";
41  public const string FALSE = "false";
42  } // end struct Options
43 
47  public string type_id { get; set; }
48 
52  public string label { get; set; }
53 
75  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
76 
79  public ShowTypesRequest() { }
80 
113  public ShowTypesRequest( string type_id,
114  string label,
115  IDictionary<string, string> options = null)
116  {
117  this.type_id = type_id ?? "";
118  this.label = label ?? "";
119  this.options = options ?? new Dictionary<string, string>();
120  } // end constructor
121  } // end class ShowTypesRequest
122 
127  {
128  public IList<string> type_ids { get; set; } = new List<string>();
129 
130  public IList<string> type_schemas { get; set; } = new List<string>();
131 
132  public IList<string> labels { get; set; } = new List<string>();
133 
134  public IList<IDictionary<string, IList<string>>> properties { get; set; } = new List<IDictionary<string, IList<string>>>();
135 
137  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
138  } // end class ShowTypesResponse
139 } // end namespace kinetica
IList< string > type_ids
Definition: ShowTypes.cs:128
IDictionary< string, string > options
Optional parameters.
Definition: ShowTypes.cs:75
ShowTypesRequest(string type_id, string label, IDictionary< string, string > options=null)
Constructs a ShowTypesRequest object with the specified parameters.
Definition: ShowTypes.cs:113
IList< IDictionary< string, IList< string > > > properties
Definition: ShowTypes.cs:134
IList< string > type_schemas
Definition: ShowTypes.cs:130
string label
Option string that was supplied by user in a call to Kinetica.createType.
Definition: ShowTypes.cs:52
A set of parameters for Kinetica.showTypes.
Definition: ShowTypes.cs:18
IList< string > labels
Definition: ShowTypes.cs:132
string type_id
Type Id returned in response to a call to Kinetica.createType.
Definition: ShowTypes.cs:47
A set of string constants for the parameter options.
Definition: ShowTypes.cs:23
ShowTypesRequest()
Constructs a ShowTypesRequest object with default parameters.
Definition: ShowTypes.cs:79
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
const string NO_JOIN_TYPES
When set to 'true', no join types will be included.
Definition: ShowTypes.cs:38
A set of results returned by Kinetica.showTypes.
Definition: ShowTypes.cs:126
IDictionary< string, string > info
Additional information.
Definition: ShowTypes.cs:137