Show / Hide Table of Contents

Class ResourceQuotumCollection

The quota details of resources under a tenancy.

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

Properties

IsAllowed

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

Used to indicate if further quota consumption isAllowed.

Remarks

Required

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<ResourceQuotumSummary> Items { get; set; }
Property Value
Type Description
List<ResourceQuotumSummary>

The list of resource quota details.

Remarks

Required

In this article
Back to top