7 using System.Collections.Generic;
19 public class AlterModelRequest : KineticaData
46 public const string CONTAINER =
"container";
47 public const string REGISTRY =
"registry";
48 public const string REFRESH =
"refresh";
49 public const string STOP_DEPLOYMENT =
"stop_deployment";
52 public string model_name {
get; set; }
74 public string action {
get; set; }
75 public string _value {
get; set; }
76 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
81 public AlterModelRequest() { }
110 public AlterModelRequest(
string model_name,
113 IDictionary<string, string> options = null)
115 this.model_name = model_name ??
"";
116 this.action = action ??
"";
117 this._value = _value ??
"";
118 this.options = options ??
new Dictionary<string, string>();
130 public class AlterModelResponse : KineticaData
132 public string model_name {
get; set; }
133 public string action {
get; set; }
134 public string _value {
get; set; }
135 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();