Show / Hide Table of Contents

Class TopUtilizedProductLicenseSummary

A summary of the top utilized product licenses.

Inheritance
object
TopUtilizedProductLicenseSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LicensemanagerService.Models
Assembly: OCI.DotNetSDK.Licensemanager.dll
Syntax
public class TopUtilizedProductLicenseSummary

Properties

IsUnlimited

Declaration
[Required(ErrorMessage = "IsUnlimited is required.")]
[JsonProperty(PropertyName = "isUnlimited")]
public bool? IsUnlimited { get; set; }
Property Value
Type Description
bool?

Specifies if the license unit count is unlimited.

Remarks

Required

ProductLicenseId

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

The product license OCID.

Remarks

Required

ProductType

Declaration
[Required(ErrorMessage = "ProductType is required.")]
[JsonProperty(PropertyName = "productType")]
public string ProductType { get; set; }
Property Value
Type Description
string

The product type.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Status? Status { get; set; }
Property Value
Type Description
Status?

The current product license status.

Remarks

Required

TotalLicenseUnitCount

Declaration
[Required(ErrorMessage = "TotalLicenseUnitCount is required.")]
[JsonProperty(PropertyName = "totalLicenseUnitCount")]
public int? TotalLicenseUnitCount { get; set; }
Property Value
Type Description
int?

Total number of license units in the product license provided by the user.

Remarks

Required

TotalUnitsConsumed

Declaration
[Required(ErrorMessage = "TotalUnitsConsumed is required.")]
[JsonProperty(PropertyName = "totalUnitsConsumed")]
public double TotalUnitsConsumed { get; set; }
Property Value
Type Description
double

Number of license units consumed.

Remarks

Required

UnitType

Declaration
[Required(ErrorMessage = "UnitType is required.")]
[JsonProperty(PropertyName = "unitType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LicenseUnit? UnitType { get; set; }
Property Value
Type Description
LicenseUnit?

The product license unit.

Remarks

Required

In this article
Back to top