Show / Hide Table of Contents

Class LimitItem

Details about the LimitItem object.

Inheritance
object
Item
LimitItem
Inherited Members
Item.ItemKey
Item.Name
Item.Category
Item.SubCategory
Item.IssueType
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CimsService.Models
Assembly: OCI.DotNetSDK.Cims.dll
Syntax
public class LimitItem : Item

Properties

CurrentLimit

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

The current service limit for the resource.

CurrentUsage

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

The current resource usage.

CustomerMessage

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

The message to customer for partially approved and rejected limit requests

LimitStatus

Declaration
[JsonProperty(PropertyName = "limitStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LimitItem.LimitStatusEnum? LimitStatus { get; set; }
Property Value
Type Description
LimitItem.LimitStatusEnum?

The status of the request.

RequestedLimit

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

The new service limit being requested for the resource.

In this article
Back to top