Show / Hide Table of Contents

Class ModelDeployWorkloadConfigurationDetails

The model deployment workload configuration.

Inheritance
object
WorkloadConfigurationDetails
ModelDeployWorkloadConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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 CMD as arguments to the ENTRYPOINT or the only command to run in the absence of an ENTRYPOINT. The combined size of CMD and ENTRYPOINT must be less than 2048 bytes.

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 1024 and 65535. The following ports cannot be used 24224, 8446, 8447.

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 1024 and 65535. The following ports cannot be used 24224, 8446, 8447.

Remarks

Required

In this article
Back to top