Show / Hide Table of Contents

Class PackageDetail

details of package causing vulnerabilities

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

Properties

Cause

Declaration
[JsonProperty(PropertyName = "cause")]
public string Cause { get; set; }
Property Value
Type Description
string

cause of the vulnerability in the package

Location

Declaration
[JsonProperty(PropertyName = "location")]
public string Location { get; set; }
Property Value
Type Description
string

location of the package

Name

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

name of the package

Remarks

Required

PackageType

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

type of the package

Remarks

Required

Remediation

Declaration
[JsonProperty(PropertyName = "remediation")]
public string Remediation { get; set; }
Property Value
Type Description
string

remediation for vulnerability

Version

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

version of the package

Remarks

Required

In this article
Back to top