Class: Google::Apis::ContaineranalysisV1beta1::PackageIssue

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PackageIssue

Returns a new instance of PackageIssue.



2108
2109
2110
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2108

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

Instance Attribute Details

#affected_locationGoogle::Apis::ContaineranalysisV1beta1::VulnerabilityLocation

The location of the vulnerability. Corresponds to the JSON property affectedLocation



2095
2096
2097
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2095

def affected_location
  @affected_location
end

#fixed_locationGoogle::Apis::ContaineranalysisV1beta1::VulnerabilityLocation

The location of the vulnerability. Corresponds to the JSON property fixedLocation



2100
2101
2102
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2100

def fixed_location
  @fixed_location
end

#severity_nameString

Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability. Corresponds to the JSON property severityName

Returns:

  • (String)


2106
2107
2108
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2106

def severity_name
  @severity_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2113
2114
2115
2116
2117
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2113

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