class Google::Apis::ContaineranalysisV1::WindowsDetail
Attributes
cpe_uri[RW]
Required. The [CPE URI](cpe.mitre.org/specification/) this vulnerability affects. Corresponds to the JSON property ‘cpeUri` @return [String]
description[RW]
The description of this vulnerability. Corresponds to the JSON property ‘description` @return [String]
fixing_kbs[RW]
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 KBs presence is considered a fix. Corresponds to the JSON property ‘fixingKbs` @return [Array<Google::Apis::ContaineranalysisV1::KnowledgeBase>]
name[RW]
Required. The name of this vulnerability. Corresponds to the JSON property ‘name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/containeranalysis_v1/classes.rb, line 4971 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/containeranalysis_v1/classes.rb, line 4976 def update!(**args) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @description = args[:description] if args.key?(:description) @fixing_kbs = args[:fixing_kbs] if args.key?(:fixing_kbs) @name = args[:name] if args.key?(:name) end