7 using System.Collections.Generic;
19 public class ImportModelRequest : KineticaData
37 public const string MEMORY_LIMIT =
"memory_limit";
40 public string model_name {
get; set; }
41 public string registry_name {
get; set; }
42 public string container {
get; set; }
43 public string run_function {
get; set; }
44 public string model_type {
get; set; }
55 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
60 public ImportModelRequest() { }
80 public ImportModelRequest(
string model_name,
85 IDictionary<string, string> options = null)
87 this.model_name = model_name ??
"";
88 this.registry_name = registry_name ??
"";
89 this.container = container ??
"";
90 this.run_function = run_function ??
"";
91 this.model_type = model_type ??
"";
92 this.options = options ??
new Dictionary<string, string>();
104 public class ImportModelResponse : KineticaData
120 public const string KML_RESPONSE =
"kml_response";
123 public string model_name {
get; set; }
124 public int entity_id {
get; set; }
135 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();