Show / Hide Table of Contents

Class CapacityReportShapeAvailability

Information about the available capacity for a shape.

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

Properties

AvailabilityStatus

Declaration
[JsonProperty(PropertyName = "availabilityStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CapacityReportShapeAvailability.AvailabilityStatusEnum? AvailabilityStatus { get; set; }
Property Value
Type Description
CapacityReportShapeAvailability.AvailabilityStatusEnum?

A flag denoting whether capacity is available.

AvailableCount

Declaration
[JsonProperty(PropertyName = "availableCount")]
public long? AvailableCount { get; set; }
Property Value
Type Description
long?

The total number of new instances that can be created with the specified shape configuration.

FaultDomain

Declaration
[JsonProperty(PropertyName = "faultDomain")]
public string FaultDomain { get; set; }
Property Value
Type Description
string

The fault domain for the capacity report.
If you do not specify the fault domain, the capacity report includes information about all fault domains.

InstanceShape

Declaration
[JsonProperty(PropertyName = "instanceShape")]
public string InstanceShape { get; set; }
Property Value
Type Description
string

The shape that the capacity report was requested for.

InstanceShapeConfig

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