Show / Hide Table of Contents

Class PackageIssue

This message wraps a location affected by a vulnerability and its associated fix (if one is available).

Inheritance
System.Object
PackageIssue
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class PackageIssue : IDirectResponseSchema

Properties

AffectedLocation

Required. The location of the vulnerability.

Declaration
[JsonProperty("affectedLocation")]
public virtual VulnerabilityLocation AffectedLocation { get; set; }
Property Value
Type Description
VulnerabilityLocation

EffectiveSeverity

Output only. The distro or language system assigned severity for this vulnerability when that is available and note provider assigned severity when it is not available.

Declaration
[JsonProperty("effectiveSeverity")]
public virtual string EffectiveSeverity { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FixedLocation

The location of the available fix for vulnerability.

Declaration
[JsonProperty("fixedLocation")]
public virtual VulnerabilityLocation FixedLocation { get; set; }
Property Value
Type Description
VulnerabilityLocation

PackageType

The type of package (e.g. OS, MAVEN, GO).

Declaration
[JsonProperty("packageType")]
public virtual string PackageType { get; set; }
Property Value
Type Description
System.String

SeverityName

Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.

Declaration
[JsonProperty("severityName")]
public virtual string SeverityName { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top