Class: Google::Apis::SecuritycenterV1::Package
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Package
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
Package is a generic definition of a package.
Instance Attribute Summary collapse
-
#cpe_uri ⇒ String
The CPE URI where the vulnerability was detected.
-
#package_name ⇒ String
The name of the package where the vulnerability was detected.
-
#package_type ⇒ String
Type of package, for example, os, maven, or go.
-
#package_version ⇒ String
The version of the package.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Package
constructor
A new instance of Package.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Package
Returns a new instance of Package.
9197 9198 9199 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9197 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpe_uri ⇒ String
The CPE URI where the vulnerability was detected.
Corresponds to the JSON property cpeUri
9180 9181 9182 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9180 def cpe_uri @cpe_uri end |
#package_name ⇒ String
The name of the package where the vulnerability was detected.
Corresponds to the JSON property packageName
9185 9186 9187 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9185 def package_name @package_name end |
#package_type ⇒ String
Type of package, for example, os, maven, or go.
Corresponds to the JSON property packageType
9190 9191 9192 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9190 def package_type @package_type end |
#package_version ⇒ String
The version of the package.
Corresponds to the JSON property packageVersion
9195 9196 9197 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9195 def package_version @package_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9202 9203 9204 9205 9206 9207 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9202 def update!(**args) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @package_name = args[:package_name] if args.key?(:package_name) @package_type = args[:package_type] if args.key?(:package_type) @package_version = args[:package_version] if args.key?(:package_version) end |