Class: Google::Apis::ContaineranalysisV1alpha1::Location
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::Location
- 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
An occurrence of a particular package installation found within a system's filesystem. e.g. glibc was found in /var/lib/dpkg/status
Instance Attribute Summary collapse
-
#cpe_uri ⇒ String
The cpe_uri in cpe format denoting the package manager version distributing a package.
-
#path ⇒ String
The path from which we gathered that this package/version is installed.
-
#version ⇒ Google::Apis::ContaineranalysisV1alpha1::Version
Version contains structured information about the version of the package.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Location
constructor
A new instance of Location.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Location
Returns a new instance of Location.
3546 3547 3548 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3546 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpe_uri ⇒ String
The cpe_uri in cpe format denoting the
package manager version distributing a package.
Corresponds to the JSON property cpeUri
3531 3532 3533 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3531 def cpe_uri @cpe_uri end |
#path ⇒ String
The path from which we gathered that this package/version is installed.
Corresponds to the JSON property path
3536 3537 3538 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3536 def path @path end |
#version ⇒ Google::Apis::ContaineranalysisV1alpha1::Version
Version contains structured information about the version of the package. For
a discussion of this in Debian/Ubuntu: http://serverfault.com/questions/604541/
debian-packages-version-convention For a discussion of this in Redhat/Fedora/
Centos: http://blog.jasonantman.com/2014/07/how-yum-and-rpm-compare-versions/
Corresponds to the JSON property version
3544 3545 3546 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3544 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3551 3552 3553 3554 3555 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3551 def update!(**args) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @path = args[:path] if args.key?(:path) @version = args[:version] if args.key?(:version) end |