Show / Hide Table of Contents

Class Detail

Identifies all appearances of this vulnerability in the package for a specific distro/location. For example: glibc in cpe:/o:debian:debian_linux:8 for versions 2.1 - 2.2

Inheritance
System.Object
Detail
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 Detail : IDirectResponseSchema

Properties

CpeUri

Required. The CPE URI in cpe format in which the vulnerability manifests. Examples include distro or storage location for vulnerable jar.

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

Description

A vendor-specific description of this note.

Declaration
[JsonProperty("description")]
public virtual string Description { 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 fix for this specific package version.

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

IsObsolete

Whether this detail is obsolete. Occurrences are expected not to point to obsolete details.

Declaration
[JsonProperty("isObsolete")]
public virtual bool? IsObsolete { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

MaxAffectedVersion

The max version of the package in which the vulnerability exists.

Declaration
[JsonProperty("maxAffectedVersion")]
public virtual Version MaxAffectedVersion { get; set; }
Property Value
Type Description
Version

MinAffectedVersion

The min version of the package in which the vulnerability exists.

Declaration
[JsonProperty("minAffectedVersion")]
public virtual Version MinAffectedVersion { get; set; }
Property Value
Type Description
Version

Package

Required. The name of the package where the vulnerability was found.

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

PackageType

The type of package; whether native or non native(ruby gems, node.js packages etc).

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

SeverityName

The severity (eg: distro assigned severity) for this vulnerability.

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

Source

The source from which the information in this Detail was obtained.

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

SourceUpdateTime

The time this information was last changed at the source. This is an upstream timestamp from the underlying information source - e.g. Ubuntu security tracker.

Declaration
[JsonProperty("sourceUpdateTime")]
public virtual object SourceUpdateTime { get; set; }
Property Value
Type Description
System.Object

Vendor

The name of the vendor of the product.

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

Implements

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