Show / Hide Table of Contents

Class ListLimitsIncreaseRequestsRequest

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

Click here to see an example of how to use ListLimitsIncreaseRequests 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

DisplayName

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

A filter to return only the resources that match the entire display name specified.

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.

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.

SortBy

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

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

SortOrder

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

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

Implements

IOciRequest
In this article
Back to top