Show / Hide Table of Contents

Class LibraryApplicationUsageSummary

Summary of an application where a given library was detected statically and/or dynamically. Contains the count of managed instances where the library was detected with this application.

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

Properties

ApplicationKey

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

The internal identifier of a Java application.

Remarks

Required

ApplicationName

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

The displayed name of the Java application.

Remarks

Required

FirstSeenInClasspath

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

The timestamp of the first time the specified library was detected in classpath.

Remarks

Required

LastDetectedDynamically

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

The date and time a library or Java package was last detected in a dynamic library scan.

Remarks

Required

LastSeenInClasspath

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

The timestamp of the last time the specified library was detected in classpath.

Remarks

Required

ManagedInstanceCount

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

The count of managed instances wherein the specified library was detected.

Remarks

Required

In this article
Back to top