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

Constructor Details

#initialize(**args) ⇒ PackageIssue

Returns a new instance of PackageIssue.



2338
2339
2340
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2338

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



2325
2326
2327
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2325

def affected_location
  @affected_location
end

#fixed_locationGoogle::Apis::ContaineranalysisV1beta1::VulnerabilityLocation

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



2330
2331
2332
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2330

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)


2336
2337
2338
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2336

def severity_name
  @severity_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2343
2344
2345
2346
2347
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2343

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