Show / Hide Table of Contents

Class VulnerabilityImpactedContainerSummary

Information on a container image impacted by a vulnerability

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

Properties

ContainerScanTargetId

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

The scan target id of the repository scan result

Remarks

Required

Image

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

The name of the container image.

Remarks

Required

LastContainerScanId

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

The ID of the last container image scan result Id

Remarks

Required

Registry

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

The registry key of the container image.

Remarks

Required

Repository

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

The repository id of the container image.

Remarks

Required

TimeScanCompleted

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

Date and time the scan was completed, as described in RFC 3339

Remarks

Required

In this article
Back to top