Show / Hide Table of Contents

Class ListLicenseRecordsRequest

Inheritance
object
ListLicenseRecordsRequest
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.LicensemanagerService.Requests
Assembly: OCI.DotNetSDK.Licensemanager.dll
Syntax
public class ListLicenseRecordsRequest : IOciRequest
Examples

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

Properties

Limit

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

The maximum number of items to return.

OpcRequestId

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

The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Page

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

A token representing the position at which to start retrieving results. This must come from the opc-next-page header field of a previous response.

ProductLicenseId

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

Unique product license identifier.

Remarks

Required

SortBy

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

Specifies the attribute with which to sort the rules.
Default: expirationDate

  • expirationDate: Sorts by expiration date of the license record.

SortOrder

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

The sort order to use, whether ASC or DESC.

Implements

IOciRequest
In this article
Back to top