Kinetica   C#   API  Version 7.2.3.1
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 namespace kinetica;
10 
12 public class EvaluateModelRequest : KineticaData
13 {
14  public string model_name { get; set; }
15  public int replicas { get; set; }
16  public string deployment_mode { get; set; }
17  public string source_table { get; set; }
18  public string destination_table { get; set; }
19  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
20 
21  public EvaluateModelRequest() { }
22 
23  public EvaluateModelRequest( string model_name,
24  int replicas,
25  string deployment_mode,
26  string source_table,
27  string destination_table,
28  IDictionary<string, string> options = null)
29  {
30  this.model_name = model_name ?? "";
31  this.replicas = replicas;
32  this.deployment_mode = deployment_mode ?? "";
33  this.source_table = source_table ?? "";
34  this.destination_table = destination_table ?? "";
35  this.options = options ?? new Dictionary<string, string>();
36  } // end constructor
37 } // end class EvaluateModelRequest
39 
41 public class EvaluateModelResponse : KineticaData
42 {
43  public string model_name { get; set; }
44  public string destination_table { get; set; }
45  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
46 } // end class EvaluateModelResponse
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14