Class: Google::Apis::SecuritycenterV1::Vulnerability

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb

Overview

Refers to common vulnerability fields e.g. cve, cvss, cwe etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Vulnerability

Returns a new instance of Vulnerability.



15083
15084
15085
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15083

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cveGoogle::Apis::SecuritycenterV1::Cve

CVE stands for Common Vulnerabilities and Exposures. Information from the CVE record that describes this vulnerability. Corresponds to the JSON property cve



15047
15048
15049
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15047

def cve
  @cve
end

#cwesArray<Google::Apis::SecuritycenterV1::Cwe>

Represents one or more Common Weakness Enumeration (CWE) information on this vulnerability. Corresponds to the JSON property cwes



15053
15054
15055
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15053

def cwes
  @cwes
end

#fixed_packageGoogle::Apis::SecuritycenterV1::Package

Package is a generic definition of a package. Corresponds to the JSON property fixedPackage



15058
15059
15060
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15058

def fixed_package
  @fixed_package
end

#offending_packageGoogle::Apis::SecuritycenterV1::Package

Package is a generic definition of a package. Corresponds to the JSON property offendingPackage



15063
15064
15065
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15063

def offending_package
  @offending_package
end

#provider_risk_scoreFixnum

Provider provided risk_score based on multiple factors. The higher the risk score, the more risky the vulnerability is. Corresponds to the JSON property providerRiskScore

Returns:

  • (Fixnum)


15069
15070
15071
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15069

def provider_risk_score
  @provider_risk_score
end

#reachableBoolean Also known as: reachable?

Represents whether the vulnerability is reachable (detected via static analysis) Corresponds to the JSON property reachable

Returns:

  • (Boolean)


15075
15076
15077
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15075

def reachable
  @reachable
end

#security_bulletinGoogle::Apis::SecuritycenterV1::SecurityBulletin

SecurityBulletin are notifications of vulnerabilities of Google products. Corresponds to the JSON property securityBulletin



15081
15082
15083
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15081

def security_bulletin
  @security_bulletin
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15088
15089
15090
15091
15092
15093
15094
15095
15096
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 15088

def update!(**args)
  @cve = args[:cve] if args.key?(:cve)
  @cwes = args[:cwes] if args.key?(:cwes)
  @fixed_package = args[:fixed_package] if args.key?(:fixed_package)
  @offending_package = args[:offending_package] if args.key?(:offending_package)
  @provider_risk_score = args[:provider_risk_score] if args.key?(:provider_risk_score)
  @reachable = args[:reachable] if args.key?(:reachable)
  @security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
end