class Google::Apis::SecuritycenterV1beta1::Cve
CVE stands for Common Vulnerabilities and Exposures. More information: https:// cve.mitre.org
Attributes
cvssv3[RW]
Common Vulnerability
Scoring System version 3. Corresponds to the JSON property `cvssv3` @return [Google::Apis::SecuritycenterV1beta1::Cvssv3]
id[RW]
The unique identifier for the vulnerability. e.g. CVE-2021-34527 Corresponds to the JSON property `id` @return [String]
references[RW]
Additional information about the CVE. e.g. cve.mitre.org/cgi-bin/ cvename.cgi?name=CVE-2021-34527 Corresponds to the JSON property `references` @return [Array<Google::Apis::SecuritycenterV1beta1::Reference>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 287 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 292 def update!(**args) @cvssv3 = args[:cvssv3] if args.key?(:cvssv3) @id = args[:id] if args.key?(:id) @references = args[:references] if args.key?(:references) end