Class: Google::Apis::ContaineranalysisV1::Detail
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1::Detail
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1/classes.rb,
lib/google/apis/containeranalysis_v1/representations.rb,
lib/google/apis/containeranalysis_v1/representations.rb
Overview
A detail for a distro and package affected by this vulnerability and its associated fix (if one is available).
Instance Attribute Summary collapse
-
#affected_cpe_uri ⇒ String
Required.
-
#affected_package ⇒ String
Required.
-
#affected_version_end ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
-
#affected_version_start ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
-
#description ⇒ String
A vendor-specific description of this vulnerability.
-
#fixed_cpe_uri ⇒ String
The distro recommended CPE URI to update to that contains a fix for this vulnerability.
-
#fixed_package ⇒ String
The distro recommended package to update to that contains a fix for this vulnerability.
-
#fixed_version ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
-
#is_obsolete ⇒ Boolean
(also: #is_obsolete?)
Whether this detail is obsolete.
-
#package_type ⇒ String
The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.).
-
#severity_name ⇒ String
The distro assigned severity of this vulnerability.
-
#source ⇒ String
The source from which the information in this Detail was obtained.
-
#source_update_time ⇒ String
The time this information was last changed at the source.
-
#vendor ⇒ String
The name of the vendor of the product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Detail
constructor
A new instance of Detail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Detail
Returns a new instance of Detail.
2448 2449 2450 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#affected_cpe_uri ⇒ String
Required. The CPE URI this
vulnerability affects.
Corresponds to the JSON property affectedCpeUri
2372 2373 2374 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2372 def affected_cpe_uri @affected_cpe_uri end |
#affected_package ⇒ String
Required. The package this vulnerability affects.
Corresponds to the JSON property affectedPackage
2377 2378 2379 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2377 def affected_package @affected_package end |
#affected_version_end ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
Corresponds to the JSON property affectedVersionEnd
2382 2383 2384 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2382 def affected_version_end @affected_version_end end |
#affected_version_start ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
Corresponds to the JSON property affectedVersionStart
2387 2388 2389 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2387 def affected_version_start @affected_version_start end |
#description ⇒ String
A vendor-specific description of this vulnerability.
Corresponds to the JSON property description
2392 2393 2394 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2392 def description @description end |
#fixed_cpe_uri ⇒ String
The distro recommended CPE URI to
update to that contains a fix for this vulnerability. It is possible for this
to be different from the affected_cpe_uri.
Corresponds to the JSON property fixedCpeUri
2399 2400 2401 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2399 def fixed_cpe_uri @fixed_cpe_uri end |
#fixed_package ⇒ String
The distro recommended package to update to that contains a fix for this
vulnerability. It is possible for this to be different from the
affected_package.
Corresponds to the JSON property fixedPackage
2406 2407 2408 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2406 def fixed_package @fixed_package end |
#fixed_version ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
Corresponds to the JSON property fixedVersion
2411 2412 2413 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2411 def fixed_version @fixed_version end |
#is_obsolete ⇒ Boolean Also known as: is_obsolete?
Whether this detail is obsolete. Occurrences are expected not to point to
obsolete details.
Corresponds to the JSON property isObsolete
2417 2418 2419 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2417 def is_obsolete @is_obsolete end |
#package_type ⇒ String
The type of package; whether native or non native (e.g., ruby gems, node.js
packages, etc.).
Corresponds to the JSON property packageType
2424 2425 2426 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2424 def package_type @package_type end |
#severity_name ⇒ String
The distro assigned severity of this vulnerability.
Corresponds to the JSON property severityName
2429 2430 2431 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2429 def severity_name @severity_name end |
#source ⇒ String
The source from which the information in this Detail was obtained.
Corresponds to the JSON property source
2434 2435 2436 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2434 def source @source end |
#source_update_time ⇒ String
The time this information was last changed at the source. This is an upstream
timestamp from the underlying information source - e.g. Ubuntu security
tracker.
Corresponds to the JSON property sourceUpdateTime
2441 2442 2443 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2441 def source_update_time @source_update_time end |
#vendor ⇒ String
The name of the vendor of the product.
Corresponds to the JSON property vendor
2446 2447 2448 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2446 def vendor @vendor end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 2453 def update!(**args) @affected_cpe_uri = args[:affected_cpe_uri] if args.key?(:affected_cpe_uri) @affected_package = args[:affected_package] if args.key?(:affected_package) @affected_version_end = args[:affected_version_end] if args.key?(:affected_version_end) @affected_version_start = args[:affected_version_start] if args.key?(:affected_version_start) @description = args[:description] if args.key?(:description) @fixed_cpe_uri = args[:fixed_cpe_uri] if args.key?(:fixed_cpe_uri) @fixed_package = args[:fixed_package] if args.key?(:fixed_package) @fixed_version = args[:fixed_version] if args.key?(:fixed_version) @is_obsolete = args[:is_obsolete] if args.key?(:is_obsolete) @package_type = args[:package_type] if args.key?(:package_type) @severity_name = args[:severity_name] if args.key?(:severity_name) @source = args[:source] if args.key?(:source) @source_update_time = args[:source_update_time] if args.key?(:source_update_time) @vendor = args[:vendor] if args.key?(:vendor) end |