Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ShowModel.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 {
19  public class ShowModelRequest : KineticaData
20  {
21  public IList<string> model_names { get; set; } = new List<string>();
22  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
23 
24 
27  public ShowModelRequest() { }
28 
35  public ShowModelRequest( IList<string> model_names = null,
36  IDictionary<string, string> options = null)
37  {
38  this.model_names = model_names ?? new List<string>();
39  this.options = options ?? new Dictionary<string, string>();
40  } // end constructor
41 
42  } // end class ShowModelRequest
44 
45 
46 
51  public class ShowModelResponse : KineticaData
52  {
53 
65  public struct Info
66  {
67  public const string KML_RESPONSE = "kml_response";
68  } // end struct Info
69 
70  public IList<string> model_names { get; set; } = new List<string>();
71  public IList<int> entity_ids { get; set; } = new List<int>();
72  public IList<string> input_schemas { get; set; } = new List<string>();
73  public IList<string> output_schemas { get; set; } = new List<string>();
74  public IList<string> registry_list { get; set; } = new List<string>();
75  public IList<string> container_list { get; set; } = new List<string>();
76  public IList<string> run_function_list { get; set; } = new List<string>();
77  public IList<string> deployments { get; set; } = new List<string>();
78 
88  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
89 
90  } // end class ShowModelResponse
92 
93 
94 
95 
96 
97 } // end namespace kinetica