google-apis-ondemandscanning_v1 0.67.0 → 0.68.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: '0490afe8d04ee88d369df298417c3a4d7827efb549a6cd5a8c53f4c716867550'
4
- data.tar.gz: 61cded5dc50c9232e53f8c3dfab787da0ab00a3609164cee1e6eac913ea8523c
3
+ metadata.gz: cf3e93ab3e12a90136a36e70c10cef8e2d82e14e438b0ccce624e9a05ecf29bb
4
+ data.tar.gz: f2ad02052e4a9719d59b3b0196fd41f4bc793824ae8800702de9695bf7413cf5
5
5
  SHA512:
6
- metadata.gz: ef293f0c59f3478e01fd16d8a3f7ebef11eb9c4d955e164e1ddcabc04577263e279cc1e000085612e9d544cf84f1da5572d7f201ac08058800417496cb212119
7
- data.tar.gz: 56b8caf067d4b1bcac35a76647e05c9db79fcd07ca50502f55e25a48defee9fad46b17267c69b379fef512b41178bb7e8d4fdd04ab7b66a20ba5de88f353feb4
6
+ metadata.gz: '0284c3b7db1674bfb894bfdde8c0ebdfa9944f8db330b7e33eae9b4774aa44a4310a5867636b526c642257916d2633b03ec345059e715d58b2f345533df6fd2e'
7
+ data.tar.gz: 15947ce30c4c5463efc6853b69b32ca7cca56d90c8d3197fa03c32fef416791b271210af78e4b5e5e653405ec38f7afeea3c639f27d30f58b604599f785a8f4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-ondemandscanning_v1
2
2
 
3
+ ### v0.68.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260622
6
+
3
7
  ### v0.67.0 (2026-06-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20260601
@@ -676,6 +676,11 @@ module Google
676
676
  # @return [String]
677
677
  attr_accessor :confidentiality_impact
678
678
 
679
+ # Exploit Maturity (E). Defined in CVSS v4.
680
+ # Corresponds to the JSON property `exploitMaturity`
681
+ # @return [String]
682
+ attr_accessor :exploit_maturity
683
+
679
684
  #
680
685
  # Corresponds to the JSON property `exploitabilityScore`
681
686
  # @return [Float]
@@ -749,6 +754,7 @@ module Google
749
754
  @availability_impact = args[:availability_impact] if args.key?(:availability_impact)
750
755
  @base_score = args[:base_score] if args.key?(:base_score)
751
756
  @confidentiality_impact = args[:confidentiality_impact] if args.key?(:confidentiality_impact)
757
+ @exploit_maturity = args[:exploit_maturity] if args.key?(:exploit_maturity)
752
758
  @exploitability_score = args[:exploitability_score] if args.key?(:exploitability_score)
753
759
  @impact_score = args[:impact_score] if args.key?(:impact_score)
754
760
  @integrity_impact = args[:integrity_impact] if args.key?(:integrity_impact)
@@ -2027,6 +2033,37 @@ module Google
2027
2033
  end
2028
2034
  end
2029
2035
 
2036
+ # Indicates where an extracted package originates from.
2037
+ class IngestionSource
2038
+ include Google::Apis::Core::Hashable
2039
+
2040
+ # The attachment URI that this package was extracted from.
2041
+ # Corresponds to the JSON property `attachmentUri`
2042
+ # @return [String]
2043
+ attr_accessor :attachment_uri
2044
+
2045
+ # The resource URL of the resource that was scanned to find this package.
2046
+ # Corresponds to the JSON property `resourceUrl`
2047
+ # @return [String]
2048
+ attr_accessor :resource_url
2049
+
2050
+ #
2051
+ # Corresponds to the JSON property `source`
2052
+ # @return [String]
2053
+ attr_accessor :source
2054
+
2055
+ def initialize(**args)
2056
+ update!(**args)
2057
+ end
2058
+
2059
+ # Update properties of this object
2060
+ def update!(**args)
2061
+ @attachment_uri = args[:attachment_uri] if args.key?(:attachment_uri)
2062
+ @resource_url = args[:resource_url] if args.key?(:resource_url)
2063
+ @source = args[:source] if args.key?(:source)
2064
+ end
2065
+ end
2066
+
2030
2067
  # Justification provides the justification when the state of the assessment if
2031
2068
  # NOT_AFFECTED.
2032
2069
  class Justification
@@ -2709,6 +2746,12 @@ module Google
2709
2746
  # @return [String]
2710
2747
  attr_accessor :hash_digest
2711
2748
 
2749
+ # The list of sources that were scanned to find this package. This can be a
2750
+ # Docker image, an SBOM attachment, or both, for example.
2751
+ # Corresponds to the JSON property `ingestionSources`
2752
+ # @return [Array<Google::Apis::OndemandscanningV1::IngestionSource>]
2753
+ attr_accessor :ingestion_sources
2754
+
2712
2755
  # Details about the layer a package was found in.
2713
2756
  # Corresponds to the JSON property `layerDetails`
2714
2757
  # @return [Google::Apis::OndemandscanningV1::LayerDetails]
@@ -2782,6 +2825,7 @@ module Google
2782
2825
  @dependency_chain = args[:dependency_chain] if args.key?(:dependency_chain)
2783
2826
  @file_location = args[:file_location] if args.key?(:file_location)
2784
2827
  @hash_digest = args[:hash_digest] if args.key?(:hash_digest)
2828
+ @ingestion_sources = args[:ingestion_sources] if args.key?(:ingestion_sources)
2785
2829
  @layer_details = args[:layer_details] if args.key?(:layer_details)
2786
2830
  @licenses = args[:licenses] if args.key?(:licenses)
2787
2831
  @maintainer = args[:maintainer] if args.key?(:maintainer)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OndemandscanningV1
18
18
  # Version of the google-apis-ondemandscanning_v1 gem
19
- GEM_VERSION = "0.67.0"
19
+ GEM_VERSION = "0.68.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 = "20260601"
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
 
@@ -856,6 +862,7 @@ module Google
856
862
  property :availability_impact, as: 'availabilityImpact'
857
863
  property :base_score, as: 'baseScore'
858
864
  property :confidentiality_impact, as: 'confidentialityImpact'
865
+ property :exploit_maturity, as: 'exploitMaturity'
859
866
  property :exploitability_score, as: 'exploitabilityScore'
860
867
  property :impact_score, as: 'impactScore'
861
868
  property :integrity_impact, as: 'integrityImpact'
@@ -1238,6 +1245,15 @@ module Google
1238
1245
  end
1239
1246
  end
1240
1247
 
1248
+ class IngestionSource
1249
+ # @private
1250
+ class Representation < Google::Apis::Core::JsonRepresentation
1251
+ property :attachment_uri, as: 'attachmentUri'
1252
+ property :resource_url, as: 'resourceUrl'
1253
+ property :source, as: 'source'
1254
+ end
1255
+ end
1256
+
1241
1257
  class Justification
1242
1258
  # @private
1243
1259
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1425,6 +1441,8 @@ module Google
1425
1441
  collection :file_location, as: 'fileLocation', class: Google::Apis::OndemandscanningV1::FileLocation, decorator: Google::Apis::OndemandscanningV1::FileLocation::Representation
1426
1442
 
1427
1443
  property :hash_digest, as: 'hashDigest'
1444
+ collection :ingestion_sources, as: 'ingestionSources', class: Google::Apis::OndemandscanningV1::IngestionSource, decorator: Google::Apis::OndemandscanningV1::IngestionSource::Representation
1445
+
1428
1446
  property :layer_details, as: 'layerDetails', class: Google::Apis::OndemandscanningV1::LayerDetails, decorator: Google::Apis::OndemandscanningV1::LayerDetails::Representation
1429
1447
 
1430
1448
  collection :licenses, as: 'licenses'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ondemandscanning_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.68.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.68.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ondemandscanning_v1
62
62
  rdoc_options: []
63
63
  require_paths: