Show / Hide Table of Contents

Class CapacityBin

Total and remaining CPU and memory capacity for each capacity bucket.

Inheritance
object
CapacityBin
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class CapacityBin

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

RemainingMemoryInGBs

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

The remaining memory of the capacity bucket, in GBs.

Remarks

Required

RemainingOcpus

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

The available OCPUs of the 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

In this article
Back to top