Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AlterModel.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 AlterModelRequest : KineticaData
20  {
21 
44  public struct Action
45  {
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";
50  } // end struct Action
51 
52  public string model_name { get; set; }
53 
74  public string action { get; set; }
75  public string _value { get; set; }
76  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
77 
78 
81  public AlterModelRequest() { }
82 
110  public AlterModelRequest( string model_name,
111  string action,
112  string _value,
113  IDictionary<string, string> options = null)
114  {
115  this.model_name = model_name ?? "";
116  this.action = action ?? "";
117  this._value = _value ?? "";
118  this.options = options ?? new Dictionary<string, string>();
119  } // end constructor
120 
121  } // end class AlterModelRequest
123 
124 
125 
130  public class AlterModelResponse : KineticaData
131  {
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>();
136 
137  } // end class AlterModelResponse
139 
140 
141 
142 
143 
144 } // end namespace kinetica