Class: Google::Apis::ContaineranalysisV1alpha1::VulnerabilityDetails
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::VulnerabilityDetails
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1alpha1/classes.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb
Overview
Used by Occurrence to point to where the vulnerability exists and how to fix it.
Instance Attribute Summary collapse
-
#cvss_score ⇒ Float
Output only.
-
#cvss_v3 ⇒ Google::Apis::ContaineranalysisV1alpha1::Cvss
Common Vulnerability Scoring System.
-
#effective_severity ⇒ String
The distro assigned severity for this vulnerability when that is available and note provider assigned severity when distro has not yet assigned a severity for this vulnerability.
-
#package_issue ⇒ Array<Google::Apis::ContaineranalysisV1alpha1::PackageIssue>
The set of affected locations and their fixes (if available) within the associated resource.
-
#severity ⇒ String
Output only.
-
#type ⇒ String
The type of package; whether native or non native(ruby gems, node.js packages etc).
Instance Method Summary collapse
-
#initialize(**args) ⇒ VulnerabilityDetails
constructor
A new instance of VulnerabilityDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VulnerabilityDetails
Returns a new instance of VulnerabilityDetails.
5525 5526 5527 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5525 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cvss_score ⇒ Float
Output only. The CVSS score of this vulnerability. CVSS score is on a scale of
0-10 where 0 indicates low severity and 10 indicates high severity.
Corresponds to the JSON property cvssScore
5484 5485 5486 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5484 def cvss_score @cvss_score end |
#cvss_v3 ⇒ Google::Apis::ContaineranalysisV1alpha1::Cvss
Common Vulnerability Scoring System. This is the storage level proto that is
intended to store similar data as the CVSS proto in google3/third_party/
grafeas/proto/v1/cvss.proto
Corresponds to the JSON property cvssV3
5491 5492 5493 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5491 def cvss_v3 @cvss_v3 end |
#effective_severity ⇒ String
The distro assigned severity for this vulnerability when that is available and
note provider assigned severity when distro has not yet assigned a severity
for this vulnerability. When there are multiple package issues for this
vulnerability, they can have different effective severities because some might
come from the distro and some might come from installed language packs (e.g.
Maven JARs or Go binaries). For this reason, it is advised to use the
effective severity on the PackageIssue level, as this field may eventually be
deprecated. In the case where multiple PackageIssues have different effective
severities, the one set here will be the highest severity of any of the
PackageIssues.
Corresponds to the JSON property effectiveSeverity
5505 5506 5507 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5505 def effective_severity @effective_severity end |
#package_issue ⇒ Array<Google::Apis::ContaineranalysisV1alpha1::PackageIssue>
The set of affected locations and their fixes (if available) within the
associated resource.
Corresponds to the JSON property packageIssue
5511 5512 5513 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5511 def package_issue @package_issue end |
#severity ⇒ String
Output only. The note provider assigned Severity of the vulnerability.
Corresponds to the JSON property severity
5516 5517 5518 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5516 def severity @severity end |
#type ⇒ String
The type of package; whether native or non native(ruby gems, node.js packages
etc). This may be deprecated in the future because we can have multiple
PackageIssues with different package types.
Corresponds to the JSON property type
5523 5524 5525 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5523 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5530 5531 5532 5533 5534 5535 5536 5537 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 5530 def update!(**args) @cvss_score = args[:cvss_score] if args.key?(:cvss_score) @cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3) @effective_severity = args[:effective_severity] if args.key?(:effective_severity) @package_issue = args[:package_issue] if args.key?(:package_issue) @severity = args[:severity] if args.key?(:severity) @type = args[:type] if args.key?(:type) end |