Show / Hide Table of Contents

Class CreateLimitsIncreaseRequestRequest

Inheritance
object
CreateLimitsIncreaseRequestRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LimitsincreaseService.Requests
Assembly: OCI.DotNetSDK.Limitsincrease.dll
Syntax
public class CreateLimitsIncreaseRequestRequest : IOciRequest
Examples

Click here to see an example of how to use CreateLimitsIncreaseRequest request.

Properties

CreateLimitsIncreaseRequestDetails

Declaration
[Required(ErrorMessage = "CreateLimitsIncreaseRequestDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public CreateLimitsIncreaseRequestDetails CreateLimitsIncreaseRequestDetails { get; set; }
Property Value
Type Description
CreateLimitsIncreaseRequestDetails

The new limit increase request details

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Override request id for request tracking purposes.

OpcRetryToken

Declaration
[HttpConverter(TargetEnum.Header, "opc-retry-token")]
public string OpcRetryToken { get; set; }
Property Value
Type Description
string

Idempotency token to make sure that a second create operation won't fail if the first one succeeded. This can be any random string.

Implements

IOciRequest
In this article
Back to top