Show / Hide Table of Contents

Class UncorrelatedPackageApplicationUsageSummary

Summary of an application where a given libary was detected. Contains the count of managed instances where the package was detected with this application.

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

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

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

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