Show / Hide Table of Contents

Class LicenseMetric

Overview of product license and resources usage.

Inheritance
object
LicenseMetric
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 LicenseMetric

Properties

LicenseRecordExpiringSoonCount

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

Total number of license records that will expire within 90 days in a particular compartment.

Remarks

Required

TotalByolInstanceCount

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

Total number of BYOL instances in a particular compartment.

Remarks

Required

TotalLicenseIncludedInstanceCount

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

Total number of License Included (LI) instances in a particular compartment.

Remarks

Required

TotalProductLicenseCount

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

Total number of product licenses in a particular compartment.

Remarks

Required

In this article
Back to top