Show / Hide Table of Contents

Class AggregatedVulnerabilitySummary

Singular information of an aggregated vulnerability datapoint.

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

Properties

RegisteredResourcesCount

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

Registered databases against which the scan ran.

Remarks

Required

Timestamp

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

UTC timestamp when the scan completed.

Remarks

Required

VulnerabilitiesCount

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

Unresolved vulnerabilities that were found by the scan.

Remarks

Required

In this article
Back to top