Show / Hide Table of Contents

Class CreateLimitsIncreaseItemRequestDetails

The configuration details for creating a limit increase item within a limit increase request. For more information, see Creating a Limit Increase Request.

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

Properties

LimitName

Declaration
[Required(ErrorMessage = "LimitName is required.")]
[JsonProperty(PropertyName = "limitName")]
public string LimitName { get; set; }
Property Value
Type Description
string

The name of the limit to be increased.

Remarks

Required

QuestionnaireResponse

Declaration
[JsonProperty(PropertyName = "questionnaireResponse")]
public List<LimitsIncreaseItemQuestionRequest> QuestionnaireResponse { get; set; }
Property Value
Type Description
List<LimitsIncreaseItemQuestionRequest>

List of questionnaire responses.

Region

Declaration
[Required(ErrorMessage = "Region is required.")]
[JsonProperty(PropertyName = "region")]
public string Region { get; set; }
Property Value
Type Description
string

The region for the limit increase.

Remarks

Required

Scope

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

The scope of the limit increase item. For OCI, use the logical availability domain (AD) of the request. For Multicloud, use the availability zone (AZ) of the request

ServiceName

Declaration
[Required(ErrorMessage = "ServiceName is required.")]
[JsonProperty(PropertyName = "serviceName")]
public string ServiceName { get; set; }
Property Value
Type Description
string

The name of the service that owns the limit.

Remarks

Required

Value

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

The requested value of the increase.

Remarks

Required

In this article
Back to top