Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class ShowModelRequest : KineticaData
13  {
14  public IList<string> model_names { get; set; } = new List<string>();
15  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
16 
17  public ShowModelRequest() { }
18 
19  public ShowModelRequest( IList<string> model_names = null,
20  IDictionary<string, string> options = null)
21  {
22  this.model_names = model_names ?? new List<string>();
23  this.options = options ?? new Dictionary<string, string>();
24  } // end constructor
25  } // end class ShowModelRequest
27 
29  public class ShowModelResponse : KineticaData
30  {
31  public struct Info
32  {
33  public const string KML_RESPONSE = "kml_response";
34  } // end struct Info
35 
36  public IList<string> model_names { get; set; } = new List<string>();
37  public IList<int> entity_ids { get; set; } = new List<int>();
38  public IList<string> input_schemas { get; set; } = new List<string>();
39  public IList<string> output_schemas { get; set; } = new List<string>();
40  public IList<string> registry_list { get; set; } = new List<string>();
41  public IList<string> container_list { get; set; } = new List<string>();
42  public IList<string> run_function_list { get; set; } = new List<string>();
43  public IList<string> deployments { get; set; } = new List<string>();
44  public IList<IDictionary<string, string>> options { get; set; } = new List<IDictionary<string, string>>();
45  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
46  } // end class ShowModelResponse
48 } // end namespace kinetica