Show / Hide Table of Contents

Class LibraryUsage

Library usage during a specified time period.

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

Properties

ApproximateApplicationCount

Declaration
[JsonProperty(PropertyName = "approximateApplicationCount")]
public int? ApproximateApplicationCount { get; set; }
Property Value
Type Description
int?

The approximate count of applications using the library.

ApproximateDeployedApplicationCount

Declaration
[JsonProperty(PropertyName = "approximateDeployedApplicationCount")]
public int? ApproximateDeployedApplicationCount { get; set; }
Property Value
Type Description
int?

The approximate count of deployed applications using the library.

ApproximateJavaServerInstanceCount

Declaration
[JsonProperty(PropertyName = "approximateJavaServerInstanceCount")]
public int? ApproximateJavaServerInstanceCount { get; set; }
Property Value
Type Description
int?

The approximate count of Java Server instances using the library.

ApproximateManagedInstanceCount

Declaration
[JsonProperty(PropertyName = "approximateManagedInstanceCount")]
public int? ApproximateManagedInstanceCount { get; set; }
Property Value
Type Description
int?

The approximate count of managed instances using the library.

CveId

Declaration
[JsonProperty(PropertyName = "cveId")]
public string CveId { get; set; }
Property Value
Type Description
string

The Common Vulnerabilities and Exposures (CVE) ID.

CvssScore

Declaration
[JsonProperty(PropertyName = "cvssScore")]
public float? CvssScore { get; set; }
Property Value
Type Description
float?

The Common Vulnerability Scoring System (CVSS) score.

FleetId

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

The OCID of the related fleet.

Remarks

Required

LibraryKey

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

The internal identifier of the library.

Remarks

Required

LibraryName

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

The name of the library.

Remarks

Required

LibraryVersion

Declaration
[JsonProperty(PropertyName = "libraryVersion")]
public string LibraryVersion { get; set; }
Property Value
Type Description
string

The version of the library.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

Upper bound of the specified time period filter. JMS provides a view of the data that is per day. The query uses only the date element of the parameter.

TimeFirstSeen

Declaration
[JsonProperty(PropertyName = "timeFirstSeen")]
public DateTime? TimeFirstSeen { get; set; }
Property Value
Type Description
DateTime?

The date and time the resource was first reported to JMS. This is potentially before the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

TimeLastCveRefreshed

Declaration
[JsonProperty(PropertyName = "timeLastCveRefreshed")]
public DateTime? TimeLastCveRefreshed { get; set; }
Property Value
Type Description
DateTime?

The date and time of the last CVEs refresh was completed.

TimeLastSeen

Declaration
[JsonProperty(PropertyName = "timeLastSeen")]
public DateTime? TimeLastSeen { get; set; }
Property Value
Type Description
DateTime?

The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

TimeStart

Declaration
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

Lower bound of the specified time period filter. JMS provides a view of the data that is per day. The query uses only the date element of the parameter.

In this article
Back to top