Show / Hide Table of Contents

Class UncorrelatedPackageUsageSummary

Summary of an uncorrelated package.

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

Properties

ApplicationCount

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

The count of applications wherein the specified package was detected.

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 package was detected.

Remarks

Required

PackageName

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

The name of the package.

Remarks

Required

In this article
Back to top