Class: Google::Apis::OndemandscanningV1beta1::PackageData
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1beta1::PackageData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1beta1/classes.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb,
lib/google/apis/ondemandscanning_v1beta1/representations.rb
Instance Attribute Summary collapse
-
#cpe_uri ⇒ String
The cpe_uri in cpe format in which the vulnerability may manifest.
-
#os ⇒ String
The OS affected by a vulnerability This field is deprecated and the information is in cpe_uri Corresponds to the JSON property
os. -
#os_version ⇒ String
The version of the OS This field is deprecated and the information is in cpe_uri Corresponds to the JSON property
osVersion. -
#package ⇒ String
The package being analysed for vulnerabilities Corresponds to the JSON property
package. -
#version ⇒ String
The version of the package being analysed Corresponds to the JSON property
version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PackageData
constructor
A new instance of PackageData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PackageData
Returns a new instance of PackageData.
1121 1122 1123 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1121 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpe_uri ⇒ String
The cpe_uri in cpe format in which
the vulnerability may manifest. Examples include distro or storage location
for vulnerable jar.
Corresponds to the JSON property cpeUri
1097 1098 1099 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1097 def cpe_uri @cpe_uri end |
#os ⇒ String
The OS affected by a vulnerability This field is deprecated and the
information is in cpe_uri
Corresponds to the JSON property os
1103 1104 1105 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1103 def os @os end |
#os_version ⇒ String
The version of the OS This field is deprecated and the information is in
cpe_uri
Corresponds to the JSON property osVersion
1109 1110 1111 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1109 def os_version @os_version end |
#package ⇒ String
The package being analysed for vulnerabilities
Corresponds to the JSON property package
1114 1115 1116 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1114 def package @package end |
#version ⇒ String
The version of the package being analysed
Corresponds to the JSON property version
1119 1120 1121 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1119 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1126 1127 1128 1129 1130 1131 1132 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1126 def update!(**args) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @os = args[:os] if args.key?(:os) @os_version = args[:os_version] if args.key?(:os_version) @package = args[:package] if args.key?(:package) @version = args[:version] if args.key?(:version) end |