Class ModelDeployWorkloadConfigurationDetails
The model deployment workload configuration.
Inherited Members
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class ModelDeployWorkloadConfigurationDetails : WorkloadConfigurationDetails
Properties
AdditionalConfigurations
Declaration
[JsonProperty(PropertyName = "additionalConfigurations")]
public Dictionary<string, string> AdditionalConfigurations { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | The additional configurations |
Cmd
Declaration
[Required(ErrorMessage = "Cmd is required.")]
[JsonProperty(PropertyName = "cmd")]
public string Cmd { get; set; }
Property Value
Type | Description |
---|---|
string | The container image run CMD as a list of strings.
Use |
Remarks
Required
HealthCheckPort
Declaration
[Required(ErrorMessage = "HealthCheckPort is required.")]
[JsonProperty(PropertyName = "healthCheckPort")]
public int? HealthCheckPort { get; set; }
Property Value
Type | Description |
---|---|
int? | The port on which the container HEALTHCHECK would listen.
The port can be anything between |
Remarks
Required
ServerPort
Declaration
[Required(ErrorMessage = "ServerPort is required.")]
[JsonProperty(PropertyName = "serverPort")]
public int? ServerPort { get; set; }
Property Value
Type | Description |
---|---|
int? | The port on which the web server serving the inference is running.
The port can be anything between |
Remarks
Required