Class: Google::Apis::OndemandscanningV1::PackageData
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1::PackageData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_v1/representations.rb
Instance Attribute Summary collapse
-
#cpe_uri ⇒ String
The cpe_uri in cpe format in which the vulnerability may manifest.
-
#dependency_chain ⇒ Array<Google::Apis::OndemandscanningV1::LanguagePackageDependency>
The dependency chain between this package and the user's artifact.
-
#file_location ⇒ Array<Google::Apis::OndemandscanningV1::FileLocation>
The path to the jar file / go binary file.
-
#hash_digest ⇒ String
HashDigest stores the SHA512 hash digest of the jar file if the package is of type Maven.
-
#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. -
#package_type ⇒ String
The type of package: os, maven, go, etc.
-
#patched_cve ⇒ Array<String>
CVEs that this package is no longer vulnerable to go/drydock-dd-custom-binary- scanning Corresponds to the JSON property
patchedCve. -
#unused ⇒ String
Corresponds to the JSON property
unused. -
#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.
2026 2027 2028 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2026 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
1968 1969 1970 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1968 def cpe_uri @cpe_uri end |
#dependency_chain ⇒ Array<Google::Apis::OndemandscanningV1::LanguagePackageDependency>
The dependency chain between this package and the user's artifact. List in
order from the customer's package under review first, to the current package
last. Inclusive of the original package and the current package.
Corresponds to the JSON property dependencyChain
1975 1976 1977 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1975 def dependency_chain @dependency_chain end |
#file_location ⇒ Array<Google::Apis::OndemandscanningV1::FileLocation>
The path to the jar file / go binary file.
Corresponds to the JSON property fileLocation
1980 1981 1982 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1980 def file_location @file_location end |
#hash_digest ⇒ String
HashDigest stores the SHA512 hash digest of the jar file if the package is of
type Maven. This field will be unset for non Maven packages.
Corresponds to the JSON property hashDigest
1986 1987 1988 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1986 def hash_digest @hash_digest 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
1992 1993 1994 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1992 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
1998 1999 2000 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 1998 def os_version @os_version end |
#package ⇒ String
The package being analysed for vulnerabilities
Corresponds to the JSON property package
2003 2004 2005 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2003 def package @package end |
#package_type ⇒ String
The type of package: os, maven, go, etc.
Corresponds to the JSON property packageType
2008 2009 2010 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2008 def package_type @package_type end |
#patched_cve ⇒ Array<String>
CVEs that this package is no longer vulnerable to go/drydock-dd-custom-binary-
scanning
Corresponds to the JSON property patchedCve
2014 2015 2016 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2014 def patched_cve @patched_cve end |
#unused ⇒ String
Corresponds to the JSON property unused
2019 2020 2021 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2019 def unused @unused end |
#version ⇒ String
The version of the package being analysed
Corresponds to the JSON property version
2024 2025 2026 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2024 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 2031 def update!(**args) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain) @file_location = args[:file_location] if args.key?(:file_location) @hash_digest = args[:hash_digest] if args.key?(:hash_digest) @os = args[:os] if args.key?(:os) @os_version = args[:os_version] if args.key?(:os_version) @package = args[:package] if args.key?(:package) @package_type = args[:package_type] if args.key?(:package_type) @patched_cve = args[:patched_cve] if args.key?(:patched_cve) @unused = args[:unused] if args.key?(:unused) @version = args[:version] if args.key?(:version) end |