Class: Google::Apis::ContaineranalysisV1beta1::PackageIssue
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::PackageIssue
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb
Overview
This message wraps a location affected by a vulnerability and its associated fix (if one is available).
Instance Attribute Summary collapse
-
#affected_location ⇒ Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation
The location of the vulnerability.
-
#fixed_location ⇒ Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation
The location of the vulnerability.
-
#severity_name ⇒ String
The severity (e.g., distro assigned severity) for this vulnerability.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PackageIssue
constructor
A new instance of PackageIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PackageIssue
Returns a new instance of PackageIssue
2025 2026 2027 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2025 def initialize(**args) update!(**args) end |
Instance Attribute Details
#affected_location ⇒ Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation
The location of the vulnerability.
Corresponds to the JSON property affectedLocation
2013 2014 2015 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2013 def affected_location @affected_location end |
#fixed_location ⇒ Google::Apis::ContaineranalysisV1beta1::VulnerabilityLocation
The location of the vulnerability.
Corresponds to the JSON property fixedLocation
2018 2019 2020 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2018 def fixed_location @fixed_location end |
#severity_name ⇒ String
The severity (e.g., distro assigned severity) for this vulnerability.
Corresponds to the JSON property severityName
2023 2024 2025 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2023 def severity_name @severity_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2030 2031 2032 2033 2034 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2030 def update!(**args) @affected_location = args[:affected_location] if args.key?(:affected_location) @fixed_location = args[:fixed_location] if args.key?(:fixed_location) @severity_name = args[:severity_name] if args.key?(:severity_name) end |