Show / Hide Table of Contents

Class ModelDeploymentShapeSummary

The compute shape used to launch a model deployment compute instance.

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

Properties

CoreCount

Declaration
[Required(ErrorMessage = "CoreCount is required.")]
[JsonProperty(PropertyName = "coreCount")]
public int? CoreCount { get; set; }
Property Value
Type Description
int?

The number of cores associated with this model deployment shape.

Remarks

Required

MemoryInGBs

Declaration
[Required(ErrorMessage = "MemoryInGBs is required.")]
[JsonProperty(PropertyName = "memoryInGBs")]
public int? MemoryInGBs { get; set; }
Property Value
Type Description
int?

The amount of memory in GBs associated with this model deployment shape.

Remarks

Required

Name

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

The name of the model deployment shape.

Remarks

Required

ShapeSeries

Declaration
[Required(ErrorMessage = "ShapeSeries is required.")]
[JsonProperty(PropertyName = "shapeSeries")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ModelDeploymentShapeSeries? ShapeSeries { get; set; }
Property Value
Type Description
ModelDeploymentShapeSeries?

The family that the compute shape belongs to.

Remarks

Required

In this article
Back to top