Show / Hide Table of Contents

Class ResourceAvailability

The availability of a given resource limit, based on the usage, tenant service limits, and quotas set for the tenancy. Note: We cannot guarantee this data for all the limits. In such cases, these fields will be empty.

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

Properties

Available

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

The count of available resources. To support resources with fractional counts, the field rounds down to the nearest integer.

EffectiveQuotaValue

Declaration
[JsonProperty(PropertyName = "effectiveQuotaValue")]
public decimal? EffectiveQuotaValue { get; set; }
Property Value
Type Description
decimal?

The effective quota value for the given compartment. This field is only present if there is a current quota policy affecting the current resource in the target region or availability domain.

FractionalAvailability

Declaration
[JsonProperty(PropertyName = "fractionalAvailability")]
public decimal? FractionalAvailability { get; set; }
Property Value
Type Description
decimal?

The most accurate count of available resources.

FractionalUsage

Declaration
[JsonProperty(PropertyName = "fractionalUsage")]
public decimal? FractionalUsage { get; set; }
Property Value
Type Description
decimal?

The current most accurate usage in the given compartment.

Used

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

The current usage in the given compartment. To support resources with fractional counts, the field rounds up to the nearest integer.

In this article
Back to top