Show / Hide Table of Contents

Class PatchLimitsIncreaseRequestRequest

Inheritance
object
PatchLimitsIncreaseRequestRequest
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 PatchLimitsIncreaseRequestRequest : IOciRequest
Examples

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

Properties

IfMatch

Declaration
[HttpConverter(TargetEnum.Header, "if-match")]
public string IfMatch { get; set; }
Property Value
Type Description
string

This value (etag) should be passed when you want to ensure that no-one else has changed the value while you're making an update. To get the current etag, make a GET call and read the current etag header. If GET returns 404, and you still want to ensure that noone else has executed a SET operation, pass the following header instead: if-none-match: *

LimitsIncreaseRequestId

Declaration
[Required(ErrorMessage = "LimitsIncreaseRequestId is required.")]
[HttpConverter(TargetEnum.Path, "limitsIncreaseRequestId")]
public string LimitsIncreaseRequestId { get; set; }
Property Value
Type Description
string

The OCID of the limit increase request.

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.

PatchLimitsIncreaseRequestDetails

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

The payload containing instructions to patch the Limits Increase Request

Remarks

Required

Implements

IOciRequest
In this article
Back to top