Class CapacityBinPreview
Total CPU and memory capacity for each capacity bucket.
Inherited Members
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class CapacityBinPreview
Properties
CapacityIndex
Declaration
[Required(ErrorMessage = "CapacityIndex is required.")]
[JsonProperty(PropertyName = "capacityIndex")]
public int? CapacityIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Zero-based index for the corresponding capacity bucket. |
Remarks
Required
SupportedShapes
Declaration
[Required(ErrorMessage = "SupportedShapes is required.")]
[JsonProperty(PropertyName = "supportedShapes")]
public List<string> SupportedShapes { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> | List of VMI shapes supported on each capacity bucket. |
Remarks
Required
TotalMemoryInGBs
Declaration
[Required(ErrorMessage = "TotalMemoryInGBs is required.")]
[JsonProperty(PropertyName = "totalMemoryInGBs")]
public float? TotalMemoryInGBs { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | The total memory of the capacity bucket, in GBs. |
Remarks
Required
TotalOcpus
Declaration
[Required(ErrorMessage = "TotalOcpus is required.")]
[JsonProperty(PropertyName = "totalOcpus")]
public float? TotalOcpus { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | The total OCPUs of the capacity bucket. |
Remarks
Required