Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
12  public class AlterModelRequest : KineticaData
13  {
14  public struct Action
15  {
16  public const string CONTAINER = "container";
17  public const string CREDENTIAL = "credential";
18  public const string REGISTRY = "registry";
19  public const string REFRESH = "refresh";
20  public const string REMOTE_MODEL_NAME = "remote_model_name";
21  public const string REMOTE_MODEL_LOCATION = "remote_model_location";
22  public const string REMOTE_MODEL_PROVIDER_TYPE = "remote_model_provider_type";
23  public const string REMOTE_MODEL_TYPE = "remote_model_type";
24  public const string STOP_DEPLOYMENT = "stop_deployment";
25  } // end struct Action
26 
27  public string model_name { get; set; }
28  public string action { get; set; }
29  public string _value { get; set; }
30  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
31 
32  public AlterModelRequest() { }
33 
34  public AlterModelRequest( string model_name,
35  string action,
36  string _value,
37  IDictionary<string, string> options = null)
38  {
39  this.model_name = model_name ?? "";
40  this.action = action ?? "";
41  this._value = _value ?? "";
42  this.options = options ?? new Dictionary<string, string>();
43  } // end constructor
44  } // end class AlterModelRequest
46 
48  public class AlterModelResponse : KineticaData
49  {
50  public string model_name { get; set; }
51  public string action { get; set; }
52  public string _value { get; set; }
53  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
54  } // end class AlterModelResponse
56 } // end namespace kinetica