Class ComputeTargetShapeSummary
The compute shape used to launch a compute target.
Inherited Members
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class ComputeTargetShapeSummary
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 compute target 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 compute target 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 compute target shape. |
Remarks
Required
ShapeSeries
Declaration
[Required(ErrorMessage = "ShapeSeries is required.")]
[JsonProperty(PropertyName = "shapeSeries")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeTargetShapeSeries? ShapeSeries { get; set; }
Property Value
| Type | Description |
|---|---|
| ComputeTargetShapeSeries? | The family that the compute shape belongs to. |
Remarks
Required