Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
EvaluateModel.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 EvaluateModelRequest : KineticaData
20  {
21  public string model_name { get; set; }
22  public int replicas { get; set; }
23  public string deployment_mode { get; set; }
24  public string source_table { get; set; }
25  public string destination_table { get; set; }
26  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
27 
28 
31  public EvaluateModelRequest() { }
32 
43  public EvaluateModelRequest( string model_name,
44  int replicas,
45  string deployment_mode,
46  string source_table,
47  string destination_table,
48  IDictionary<string, string> options = null)
49  {
50  this.model_name = model_name ?? "";
51  this.replicas = replicas;
52  this.deployment_mode = deployment_mode ?? "";
53  this.source_table = source_table ?? "";
54  this.destination_table = destination_table ?? "";
55  this.options = options ?? new Dictionary<string, string>();
56  } // end constructor
57 
58  } // end class EvaluateModelRequest
60 
61 
62 
67  public class EvaluateModelResponse : KineticaData
68  {
69  public string model_name { get; set; }
70  public string destination_table { get; set; }
71  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
72 
73  } // end class EvaluateModelResponse
75 
76 
77 
78 
79 
80 } // end namespace kinetica