Show / Hide Table of Contents

Class ListProductLicenseConsumersRequest

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

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

Properties

CompartmentId

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

The compartment OCID used for the license record, product license, and configuration.

Remarks

Required

IsCompartmentIdInSubtree

Declaration
[HttpConverter(TargetEnum.Query, "isCompartmentIdInSubtree")]
public bool? IsCompartmentIdInSubtree { get; set; }
Property Value
Type Description
bool?

Indicates if the given compartment is the root compartment.

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 ListProductLicenseConsumersRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListProductLicenseConsumersRequest.SortByEnum?

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

  • licenseUnitsRequired: Sorts by licenseUnitsRequired of the Resource.

SortOrder

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

The sort order to use, whether ASC or DESC.

Implements

IOciRequest
In this article
Back to top