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.
1167 1168 1169 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1167 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
1143 1144 1145 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1143 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
1149 1150 1151 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1149 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
1155 1156 1157 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1155 def os_version @os_version end |
#package ⇒ String
The package being analysed for vulnerabilities
Corresponds to the JSON property package
1160 1161 1162 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1160 def package @package end |
#version ⇒ String
The version of the package being analysed
Corresponds to the JSON property version
1165 1166 1167 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1165 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1172 1173 1174 1175 1176 1177 1178 |
# File 'lib/google/apis/ondemandscanning_v1beta1/classes.rb', line 1172 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 |