Show / Hide Table of Contents

Class ResourceQuotumSummary

The resource quota balance details.

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

Properties

AffectedResource

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

The affected resource name.

Balance

Declaration
[JsonProperty(PropertyName = "balance")]
public double Balance { get; set; }
Property Value
Type Description
double

The quota balance.

IsAllowed

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

Used to indicate if further quota consumption isAllowed.

IsDependency

Declaration
[JsonProperty(PropertyName = "isDependency")]
public bool? IsDependency { get; set; }
Property Value
Type Description
bool?

Used to indicate any resource dependencies.

IsOverage

Declaration
[JsonProperty(PropertyName = "isOverage")]
public bool? IsOverage { get; set; }
Property Value
Type Description
bool?

Used to indicate if overages are incurred.

Limit

Declaration
[JsonProperty(PropertyName = "limit")]
public double Limit { get; set; }
Property Value
Type Description
double

The quota limit.

Name

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

The resource name.

PurchasedLimit

Declaration
[JsonProperty(PropertyName = "purchasedLimit")]
public double PurchasedLimit { get; set; }
Property Value
Type Description
double

The purchased quota limit.

Service

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

The service name.

In this article
Back to top