google-apis-ondemandscanning_v1beta1 0.66.0 → 0.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 183d8f9611fa185a979df1ebf2fdc3a86c83a4279d64e66b7312e07d2ef1c75b
|
|
4
|
+
data.tar.gz: 895e44ba55198b66bd9f005e7a9dc369bc0001f56aa6b87dc236a6746322b707
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3774323af24a79080864e25772fcb7596ff8cac8c90c28e2949e8c5280d27dc093b703d99f363d9fb1b861f20da8d8d77f2b82e938220d3b82cded4c17fb8245
|
|
7
|
+
data.tar.gz: 81aa682f9deae95810b06504c85dfca22f23354f3c42ac9a0e1913e7904588f54df83caac0b2b18e27b59ca53ce2715675559640186370c694365f9325a55944
|
data/CHANGELOG.md
CHANGED
|
@@ -668,6 +668,11 @@ module Google
|
|
|
668
668
|
# @return [String]
|
|
669
669
|
attr_accessor :confidentiality_impact
|
|
670
670
|
|
|
671
|
+
# Exploit Maturity (E). Defined in CVSS v4.
|
|
672
|
+
# Corresponds to the JSON property `exploitMaturity`
|
|
673
|
+
# @return [String]
|
|
674
|
+
attr_accessor :exploit_maturity
|
|
675
|
+
|
|
671
676
|
#
|
|
672
677
|
# Corresponds to the JSON property `exploitabilityScore`
|
|
673
678
|
# @return [Float]
|
|
@@ -741,6 +746,7 @@ module Google
|
|
|
741
746
|
@availability_impact = args[:availability_impact] if args.key?(:availability_impact)
|
|
742
747
|
@base_score = args[:base_score] if args.key?(:base_score)
|
|
743
748
|
@confidentiality_impact = args[:confidentiality_impact] if args.key?(:confidentiality_impact)
|
|
749
|
+
@exploit_maturity = args[:exploit_maturity] if args.key?(:exploit_maturity)
|
|
744
750
|
@exploitability_score = args[:exploitability_score] if args.key?(:exploitability_score)
|
|
745
751
|
@impact_score = args[:impact_score] if args.key?(:impact_score)
|
|
746
752
|
@integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
|
|
@@ -2019,6 +2025,37 @@ module Google
|
|
|
2019
2025
|
end
|
|
2020
2026
|
end
|
|
2021
2027
|
|
|
2028
|
+
# Indicates where an extracted package originates from.
|
|
2029
|
+
class IngestionSource
|
|
2030
|
+
include Google::Apis::Core::Hashable
|
|
2031
|
+
|
|
2032
|
+
# The attachment URI that this package was extracted from.
|
|
2033
|
+
# Corresponds to the JSON property `attachmentUri`
|
|
2034
|
+
# @return [String]
|
|
2035
|
+
attr_accessor :attachment_uri
|
|
2036
|
+
|
|
2037
|
+
# The resource URL of the resource that was scanned to find this package.
|
|
2038
|
+
# Corresponds to the JSON property `resourceUrl`
|
|
2039
|
+
# @return [String]
|
|
2040
|
+
attr_accessor :resource_url
|
|
2041
|
+
|
|
2042
|
+
#
|
|
2043
|
+
# Corresponds to the JSON property `source`
|
|
2044
|
+
# @return [String]
|
|
2045
|
+
attr_accessor :source
|
|
2046
|
+
|
|
2047
|
+
def initialize(**args)
|
|
2048
|
+
update!(**args)
|
|
2049
|
+
end
|
|
2050
|
+
|
|
2051
|
+
# Update properties of this object
|
|
2052
|
+
def update!(**args)
|
|
2053
|
+
@attachment_uri = args[:attachment_uri] if args.key?(:attachment_uri)
|
|
2054
|
+
@resource_url = args[:resource_url] if args.key?(:resource_url)
|
|
2055
|
+
@source = args[:source] if args.key?(:source)
|
|
2056
|
+
end
|
|
2057
|
+
end
|
|
2058
|
+
|
|
2022
2059
|
# Justification provides the justification when the state of the assessment if
|
|
2023
2060
|
# NOT_AFFECTED.
|
|
2024
2061
|
class Justification
|
|
@@ -2701,6 +2738,12 @@ module Google
|
|
|
2701
2738
|
# @return [String]
|
|
2702
2739
|
attr_accessor :hash_digest
|
|
2703
2740
|
|
|
2741
|
+
# The list of sources that were scanned to find this package. This can be a
|
|
2742
|
+
# Docker image, an SBOM attachment, or both, for example.
|
|
2743
|
+
# Corresponds to the JSON property `ingestionSources`
|
|
2744
|
+
# @return [Array<Google::Apis::OndemandscanningV1beta1::IngestionSource>]
|
|
2745
|
+
attr_accessor :ingestion_sources
|
|
2746
|
+
|
|
2704
2747
|
# Details about the layer a package was found in.
|
|
2705
2748
|
# Corresponds to the JSON property `layerDetails`
|
|
2706
2749
|
# @return [Google::Apis::OndemandscanningV1beta1::LayerDetails]
|
|
@@ -2774,6 +2817,7 @@ module Google
|
|
|
2774
2817
|
@dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
|
|
2775
2818
|
@file_location = args[:file_location] if args.key?(:file_location)
|
|
2776
2819
|
@hash_digest = args[:hash_digest] if args.key?(:hash_digest)
|
|
2820
|
+
@ingestion_sources = args[:ingestion_sources] if args.key?(:ingestion_sources)
|
|
2777
2821
|
@layer_details = args[:layer_details] if args.key?(:layer_details)
|
|
2778
2822
|
@licenses = args[:licenses] if args.key?(:licenses)
|
|
2779
2823
|
@maintainer = args[:maintainer] if args.key?(:maintainer)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module OndemandscanningV1beta1
|
|
18
18
|
# Version of the google-apis-ondemandscanning_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.67.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260622"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -352,6 +352,12 @@ module Google
|
|
|
352
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
353
353
|
end
|
|
354
354
|
|
|
355
|
+
class IngestionSource
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
355
361
|
class Justification
|
|
356
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
363
|
|
|
@@ -855,6 +861,7 @@ module Google
|
|
|
855
861
|
property :availability_impact, as: 'availabilityImpact'
|
|
856
862
|
property :base_score, as: 'baseScore'
|
|
857
863
|
property :confidentiality_impact, as: 'confidentialityImpact'
|
|
864
|
+
property :exploit_maturity, as: 'exploitMaturity'
|
|
858
865
|
property :exploitability_score, as: 'exploitabilityScore'
|
|
859
866
|
property :impact_score, as: 'impactScore'
|
|
860
867
|
property :integrity_impact, as: 'integrityImpact'
|
|
@@ -1237,6 +1244,15 @@ module Google
|
|
|
1237
1244
|
end
|
|
1238
1245
|
end
|
|
1239
1246
|
|
|
1247
|
+
class IngestionSource
|
|
1248
|
+
# @private
|
|
1249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1250
|
+
property :attachment_uri, as: 'attachmentUri'
|
|
1251
|
+
property :resource_url, as: 'resourceUrl'
|
|
1252
|
+
property :source, as: 'source'
|
|
1253
|
+
end
|
|
1254
|
+
end
|
|
1255
|
+
|
|
1240
1256
|
class Justification
|
|
1241
1257
|
# @private
|
|
1242
1258
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1424,6 +1440,8 @@ module Google
|
|
|
1424
1440
|
collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1beta1::FileLocation, decorator: Google::Apis::OndemandscanningV1beta1::FileLocation::Representation
|
|
1425
1441
|
|
|
1426
1442
|
property :hash_digest, as: 'hashDigest'
|
|
1443
|
+
collection :ingestion_sources, as: 'ingestionSources', class: Google::Apis::OndemandscanningV1beta1::IngestionSource, decorator: Google::Apis::OndemandscanningV1beta1::IngestionSource::Representation
|
|
1444
|
+
|
|
1427
1445
|
property :layer_details, as: 'layerDetails', class: Google::Apis::OndemandscanningV1beta1::LayerDetails, decorator: Google::Apis::OndemandscanningV1beta1::LayerDetails::Representation
|
|
1428
1446
|
|
|
1429
1447
|
collection :licenses, as: 'licenses'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-ondemandscanning_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.67.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.67.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|