Show / Hide Table of Contents

Class ListLimitsIncreaseQuestionsRequest

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

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

Limit

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

Maximum number of items returned in a page.

LimitName

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

The name of the limit.

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.

ServiceName

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

The name of the service.

SortBy

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

The field to sort by. Both fields will sort alphabetically

SortOrder

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

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

Implements

IOciRequest
In this article
Back to top