class Google::Apis::ContaineranalysisV1beta1::WindowsDetail
Attributes
Required. The CPE URI in [cpe format](cpe.mitre.org/specification/) in which the vulnerability manifests. Examples include distro or storage location for vulnerable jar. Corresponds to the JSON property `cpeUri` @return [String]
The description of the vulnerability. Corresponds to the JSON property `description` @return [String]
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. Corresponds to the JSON property `fixingKbs` @return [Array<Google::Apis::ContaineranalysisV1beta1::KnowledgeBase>]
Required. The name of the vulnerability. Corresponds to the JSON property `name` @return [String]
Public Class Methods
# File lib/google/apis/containeranalysis_v1beta1/classes.rb, line 3727 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/containeranalysis_v1beta1/classes.rb, line 3732 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