Show / Hide Table of Contents

Class ListLimitsIncreaseItemRequestsRequest

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

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

Properties

CompartmentId

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

The OCID of the parent compartment. Note: The tenancy is the root compartment.

Remarks

Required

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public string LifecycleState { get; set; }
Property Value
Type Description
string

Lifecycle state of the limit increase request.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

Maximum number of items returned in a page.

LimitsIncreaseRequestId

Declaration
[HttpConverter(TargetEnum.Query, "limitsIncreaseRequestId")]
public string LimitsIncreaseRequestId { get; set; }
Property Value
Type Description
string

The OCID of the limit increase request.

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.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The next page token.

Service

Declaration
[HttpConverter(TargetEnum.Query, "service")]
public string Service { get; set; }
Property Value
Type Description
string

Name of service that owns the limit.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListLimitsIncreaseItemRequestsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListLimitsIncreaseItemRequestsRequest.SortByEnum?

The field to sort by. You can specify only one sort order. The default order for timeCreated is descending.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListLimitsIncreaseItemRequestsRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListLimitsIncreaseItemRequestsRequest.SortOrderEnum?

The sort order to use, either 'asc' or 'desc'. By default, it is ascending.

Implements

IOciRequest
In this article
Back to top