Show / Hide Table of Contents

Class CreateLimitItemDetails

Details about the service limit increase request. Avoid entering confidential information. For information about LIMIT support tickets, see Creating a Service Limit Increase Request.

Inheritance
object
CreateItemDetails
CreateLimitItemDetails
Inherited Members
CreateItemDetails.Category
CreateItemDetails.SubCategory
CreateItemDetails.IssueType
CreateItemDetails.Name
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 CreateLimitItemDetails : CreateItemDetails

Properties

CurrentLimit

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

The limit of the resource currently available.

CurrentUsage

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

The current usage of the resource.

RequestedLimit

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

The new service limit being requested.

In this article
Back to top