google-apis-ondemandscanning_v1 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: 12543fcec7df4509298b2863ab48477712af171a819cec5947a4470d0ced1e7b
4
- data.tar.gz: 4fb8f5bb75bb4311901ee9919bcee8b9847ace093999fdac45523c8f519de0c2
3
+ metadata.gz: '0490afe8d04ee88d369df298417c3a4d7827efb549a6cd5a8c53f4c716867550'
4
+ data.tar.gz: 61cded5dc50c9232e53f8c3dfab787da0ab00a3609164cee1e6eac913ea8523c
5
5
  SHA512:
6
- metadata.gz: 326c001886cfc386dc07a4eeb485535f9fceda7c5995d54b346de5601c75ec6f59592e2028abf43f3307aba4fc3d2f412e541a73e95e85ef360076eb87320403
7
- data.tar.gz: 8c52c758cd05281f64b66f65f2479f65205c22109be8d0f0c686dfde5a8da8575b18dd66499e3b8591857bb85da2b14d9be1eb3af4efa3b37b469fbdb6ec9416
6
+ metadata.gz: ef293f0c59f3478e01fd16d8a3f7ebef11eb9c4d955e164e1ddcabc04577263e279cc1e000085612e9d544cf84f1da5572d7f201ac08058800417496cb212119
7
+ data.tar.gz: 56b8caf067d4b1bcac35a76647e05c9db79fcd07ca50502f55e25a48defee9fad46b17267c69b379fef512b41178bb7e8d4fdd04ab7b66a20ba5de88f353feb4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-ondemandscanning_v1
2
2
 
3
+ ### v0.67.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260601
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.66.0 (2026-05-17)
4
9
 
5
10
  * Regenerated from discovery document revision 20260511
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/container-analysis/docs/on-
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1341,6 +1341,11 @@ module Google
1341
1341
  # @return [String]
1342
1342
  attr_accessor :category
1343
1343
 
1344
+ # Description of the finding category.
1345
+ # Corresponds to the JSON property `details`
1346
+ # @return [String]
1347
+ attr_accessor :details
1348
+
1344
1349
  # Location details with file path and line number.
1345
1350
  # Corresponds to the JSON property `location`
1346
1351
  # @return [Google::Apis::OndemandscanningV1::FindingLocation]
@@ -1363,6 +1368,7 @@ module Google
1363
1368
  # Update properties of this object
1364
1369
  def update!(**args)
1365
1370
  @category = args[:category] if args.key?(:category)
1371
+ @details = args[:details] if args.key?(:details)
1366
1372
  @location = args[:location] if args.key?(:location)
1367
1373
  @scanner = args[:scanner] if args.key?(:scanner)
1368
1374
  @severity = args[:severity] if args.key?(:severity)
@@ -4216,6 +4222,14 @@ module Google
4216
4222
  # @return [Google::Apis::OndemandscanningV1::Cvss]
4217
4223
  attr_accessor :cvss_v2
4218
4224
 
4225
+ # Common Vulnerability Scoring System. For details, see https://www.first.org/
4226
+ # cvss/specification-document This is a message we will try to use for storing
4227
+ # various versions of CVSS rather than making a separate proto for storing a
4228
+ # specific version.
4229
+ # Corresponds to the JSON property `cvssV4`
4230
+ # @return [Google::Apis::OndemandscanningV1::Cvss]
4231
+ attr_accessor :cvss_v4
4232
+
4219
4233
  # Output only. CVSS version used to populate cvss_score and severity.
4220
4234
  # Corresponds to the JSON property `cvssVersion`
4221
4235
  # @return [String]
@@ -4303,6 +4317,7 @@ module Google
4303
4317
  def update!(**args)
4304
4318
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
4305
4319
  @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
4320
+ @cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
4306
4321
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
4307
4322
  @cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
4308
4323
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
@@ -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.66.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260511"
25
+ REVISION = "20260601"
26
26
  end
27
27
  end
28
28
  end
@@ -1038,6 +1038,7 @@ module Google
1038
1038
  # @private
1039
1039
  class Representation < Google::Apis::Core::JsonRepresentation
1040
1040
  property :category, as: 'category'
1041
+ property :details, as: 'details'
1041
1042
  property :location, as: 'location', class: Google::Apis::OndemandscanningV1::FindingLocation, decorator: Google::Apis::OndemandscanningV1::FindingLocation::Representation
1042
1043
 
1043
1044
  property :scanner, as: 'scanner'
@@ -1833,6 +1834,8 @@ module Google
1833
1834
  property :cvss_score, as: 'cvssScore'
1834
1835
  property :cvss_v2, as: 'cvssV2', class: Google::Apis::OndemandscanningV1::Cvss, decorator: Google::Apis::OndemandscanningV1::Cvss::Representation
1835
1836
 
1837
+ property :cvss_v4, as: 'cvssV4', class: Google::Apis::OndemandscanningV1::Cvss, decorator: Google::Apis::OndemandscanningV1::Cvss::Representation
1838
+
1836
1839
  property :cvss_version, as: 'cvssVersion'
1837
1840
  property :cvssv3, as: 'cvssv3', class: Google::Apis::OndemandscanningV1::Cvss, decorator: Google::Apis::OndemandscanningV1::Cvss::Representation
1838
1841
 
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.66.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1/v0.67.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:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="