Show / Hide Table of Contents

Class RelatedVulnerabilityReference

A related vulnerability reference is an object with vulnerabilityId and source to identify a related vulnerability.

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

Properties

Id

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

Unique vulnerability identifier for a source, e.g., CVE-1999-0067.

Remarks

Required

Source

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

Source that publishes the vulnerability.

Remarks

Required

In this article
Back to top