Show / Hide Table of Contents

Class WindowsDetail

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

The description of the vulnerability.

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

FixingKbs

Required. The names of the KBs which have hotfixes to mitigate this vulnerability. Note that there may be multiple hotfixes (and thus multiple KBs) that mitigate a given vulnerability. Currently any listed kb's presence is considered a fix.

Declaration
[JsonProperty("fixingKbs")]
public virtual IList<KnowledgeBase> FixingKbs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<KnowledgeBase>

Name

Required. The name of the vulnerability.

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

Implements

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