Show / Hide Table of Contents

Class ModelConfigurationDetails

The model configuration details.

Inheritance
object
ModelConfigurationDetails
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 ModelConfigurationDetails

Properties

BandwidthMbps

Declaration
[JsonProperty(PropertyName = "bandwidthMbps")]
public int? BandwidthMbps { get; set; }
Property Value
Type Description
int?

The minimum network bandwidth for the model deployment.

InstanceConfiguration

Declaration
[Required(ErrorMessage = "InstanceConfiguration is required.")]
[JsonProperty(PropertyName = "instanceConfiguration")]
public InstanceConfiguration InstanceConfiguration { get; set; }
Property Value
Type Description
InstanceConfiguration
Remarks

Required

MaximumBandwidthMbps

Declaration
[JsonProperty(PropertyName = "maximumBandwidthMbps")]
public int? MaximumBandwidthMbps { get; set; }
Property Value
Type Description
int?

The maximum network bandwidth for the model deployment.

ModelId

Declaration
[Required(ErrorMessage = "ModelId is required.")]
[JsonProperty(PropertyName = "modelId")]
public string ModelId { get; set; }
Property Value
Type Description
string

The OCID of the model you want to deploy.

Remarks

Required

ScalingPolicy

Declaration
[JsonProperty(PropertyName = "scalingPolicy")]
public ScalingPolicy ScalingPolicy { get; set; }
Property Value
Type Description
ScalingPolicy
In this article
Back to top