Show / Hide Table of Contents

Class UncorrelatedPackageManagedInstanceUsageSummary

Summary of a managed instance where a given uncorrelated package was detected. Contains the count of application where the package was detected with this application.

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

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

Remarks

Required

Hostname

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

The hostname of the managed instance.

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

ManagedInstanceId

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

The OCID of the related managed instance.

Remarks

Required

In this article
Back to top