7 using System.Collections.Generic;
19 public class ShowModelRequest : KineticaData
21 public IList<string> model_names {
get; set; } =
new List<string>();
22 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
27 public ShowModelRequest() { }
35 public ShowModelRequest( IList<string> model_names = null,
36 IDictionary<string, string> options = null)
38 this.model_names = model_names ??
new List<string>();
39 this.options = options ??
new Dictionary<string, string>();
51 public class ShowModelResponse : KineticaData
67 public const string KML_RESPONSE =
"kml_response";
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>();
88 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();