Show / Hide Table of Contents

Class CapacityAvailability

Information about the available capacity for a shape.

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

Properties

AvailabilityStatus

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

A flag denoting whether capacity is available.

Remarks

Required

AvailableCount

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

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

Remarks

Required

In this article
Back to top