Show / Hide Table of Contents

Class LimitValueSummary

The value of a specific resource limit.

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

Properties

AvailabilityDomain

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

If present, the returned value is only specific to this availability domain.

Name

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

The resource limit name. To be used for writing policies (in case of quotas) or other programmatic calls.

ScopeType

Declaration
[JsonProperty(PropertyName = "scopeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LimitValueSummary.ScopeTypeEnum? ScopeType { get; set; }
Property Value
Type Description
LimitValueSummary.ScopeTypeEnum?

The scope type of the limit.

Value

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

The resource limit value.

In this article
Back to top