google-apis-ondemandscanning_v1beta1 0.65.0 → 0.66.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: a09bc7e680a5af212baffbe4fbf5576607fe0636c614440360c2697af5add67f
4
- data.tar.gz: 8363e3d8eeb165a6353a6850f3fa74569464bd95589be1ee9eb5a4b6bc55e536
3
+ metadata.gz: 3c03390f19edc19bcc4531f852943df06026c4751778e3120c755e826f3ff67e
4
+ data.tar.gz: 4254bc71f7fc8c05a89bf369596b78d4a74ead5f15bd76bea620651ba1f7a7f2
5
5
  SHA512:
6
- metadata.gz: e30698c44653bd3645d0ba80210d64cb17c4bbec12c21b5c70e2147d316d07e256335666f7dfd93b7772eecc1d6b513caf9839cd2cc3a4cc938234ba4f9c0ec2
7
- data.tar.gz: 5d32378f0c19a462befb2c5c74ecb1fa7f0c9964718ed3169085b0bba29a739e4eeccc4eacdcb3c07e30ae56eb7bbbd176b5cc4de9ae1506f86e4f5a655366b2
6
+ metadata.gz: 4d044b4c78542ed6a696846c3f75a36da86efd5f7b8c17340c9e548d759be03bb72e8933e2eefd538271abf24676224b0a3b1028a6cb8d09cb7e220ea00b358d
7
+ data.tar.gz: 6efce2e4c1234b53aa764b403b36ec046e2c73c0b8e0fc9f190866d437e20aa366565e21a1239b8b4d1faa4ee5952248afeae2b874b7b0d947e8984ac81fd88e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-ondemandscanning_v1beta1
2
2
 
3
+ ### v0.66.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260601
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.65.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
 
@@ -1333,6 +1333,11 @@ module Google
1333
1333
  # @return [String]
1334
1334
  attr_accessor :category
1335
1335
 
1336
+ # Description of the finding category.
1337
+ # Corresponds to the JSON property `details`
1338
+ # @return [String]
1339
+ attr_accessor :details
1340
+
1336
1341
  # Location details with file path and line number.
1337
1342
  # Corresponds to the JSON property `location`
1338
1343
  # @return [Google::Apis::OndemandscanningV1beta1::FindingLocation]
@@ -1355,6 +1360,7 @@ module Google
1355
1360
  # Update properties of this object
1356
1361
  def update!(**args)
1357
1362
  @category = args[:category] if args.key?(:category)
1363
+ @details = args[:details] if args.key?(:details)
1358
1364
  @location = args[:location] if args.key?(:location)
1359
1365
  @scanner = args[:scanner] if args.key?(:scanner)
1360
1366
  @severity = args[:severity] if args.key?(:severity)
@@ -4208,6 +4214,14 @@ module Google
4208
4214
  # @return [Google::Apis::OndemandscanningV1beta1::Cvss]
4209
4215
  attr_accessor :cvss_v2
4210
4216
 
4217
+ # Common Vulnerability Scoring System. For details, see https://www.first.org/
4218
+ # cvss/specification-document This is a message we will try to use for storing
4219
+ # various versions of CVSS rather than making a separate proto for storing a
4220
+ # specific version.
4221
+ # Corresponds to the JSON property `cvssV4`
4222
+ # @return [Google::Apis::OndemandscanningV1beta1::Cvss]
4223
+ attr_accessor :cvss_v4
4224
+
4211
4225
  # Output only. CVSS version used to populate cvss_score and severity.
4212
4226
  # Corresponds to the JSON property `cvssVersion`
4213
4227
  # @return [String]
@@ -4295,6 +4309,7 @@ module Google
4295
4309
  def update!(**args)
4296
4310
  @cvss_score = args[:cvss_score] if args.key?(:cvss_score)
4297
4311
  @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
4312
+ @cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
4298
4313
  @cvss_version = args[:cvss_version] if args.key?(:cvss_version)
4299
4314
  @cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
4300
4315
  @effective_severity = args[:effective_severity] if args.key?(:effective_severity)
@@ -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.65.0"
19
+ GEM_VERSION = "0.66.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
@@ -1037,6 +1037,7 @@ module Google
1037
1037
  # @private
1038
1038
  class Representation < Google::Apis::Core::JsonRepresentation
1039
1039
  property :category, as: 'category'
1040
+ property :details, as: 'details'
1040
1041
  property :location, as: 'location', class: Google::Apis::OndemandscanningV1beta1::FindingLocation, decorator: Google::Apis::OndemandscanningV1beta1::FindingLocation::Representation
1041
1042
 
1042
1043
  property :scanner, as: 'scanner'
@@ -1832,6 +1833,8 @@ module Google
1832
1833
  property :cvss_score, as: 'cvssScore'
1833
1834
  property :cvss_v2, as: 'cvssV2', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
1834
1835
 
1836
+ property :cvss_v4, as: 'cvssV4', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
1837
+
1835
1838
  property :cvss_version, as: 'cvssVersion'
1836
1839
  property :cvssv3, as: 'cvssv3', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
1837
1840
 
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.65.0
4
+ version: 0.66.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.65.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ondemandscanning_v1beta1/v0.66.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:
@@ -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
  - - ">="