diff --git a/api_names_out.yaml b/api_names_out.yaml index 7a1ec3d5305..15e215ad23f 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -338061,6 +338061,7 @@ "/ondemandscanning:v1beta1/Finding": finding "/ondemandscanning:v1beta1/Finding/category": category "/ondemandscanning:v1beta1/Finding/description": description +"/ondemandscanning:v1beta1/Finding/details": details "/ondemandscanning:v1beta1/Finding/filePath": file_path "/ondemandscanning:v1beta1/Finding/location": location "/ondemandscanning:v1beta1/Finding/ruleId": rule_id @@ -338516,6 +338517,7 @@ "/ondemandscanning:v1beta1/VulnerabilityOccurrence": vulnerability_occurrence "/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssScore": cvss_score "/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssV2": cvss_v2 +"/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssV4": cvss_v4 "/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssVersion": cvss_version "/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssv3": cvssv3 "/ondemandscanning:v1beta1/VulnerabilityOccurrence/effectiveSeverity": effective_severity diff --git a/generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md b/generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md index e796b2cacb2..fa88dbabcb0 100644 --- a/generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md +++ b/generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md @@ -1,5 +1,10 @@ # Release history for google-apis-ondemandscanning_v1beta1 +### v0.66.0 (2026-06-14) + +* Regenerated from discovery document revision 20260601 +* Regenerated using generator version 0.19.0 + ### v0.65.0 (2026-05-17) * Regenerated from discovery document revision 20260511 diff --git a/generated/google-apis-ondemandscanning_v1beta1/OVERVIEW.md b/generated/google-apis-ondemandscanning_v1beta1/OVERVIEW.md index 839b89ea343..1b97dcf7f09 100644 --- a/generated/google-apis-ondemandscanning_v1beta1/OVERVIEW.md +++ b/generated/google-apis-ondemandscanning_v1beta1/OVERVIEW.md @@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/container-analysis/docs/on- ## Supported Ruby versions -This library is supported on Ruby 3.1+. +This library is supported on Ruby 3.2+. 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. diff --git a/generated/google-apis-ondemandscanning_v1beta1/google-apis-ondemandscanning_v1beta1.gemspec b/generated/google-apis-ondemandscanning_v1beta1/google-apis-ondemandscanning_v1beta1.gemspec index 9f73fc2e6b2..fc2a16a93c5 100644 --- a/generated/google-apis-ondemandscanning_v1beta1/google-apis-ondemandscanning_v1beta1.gemspec +++ b/generated/google-apis-ondemandscanning_v1beta1/google-apis-ondemandscanning_v1beta1.gemspec @@ -28,6 +28,6 @@ Gem::Specification.new do |gem| gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"] gem.require_paths = ["lib"] - gem.required_ruby_version = '>= 3.1' + gem.required_ruby_version = '>= 3.2' gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a" end diff --git a/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/classes.rb b/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/classes.rb index 8b350b18fb0..f8079ec4e8e 100644 --- a/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/classes.rb +++ b/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/classes.rb @@ -1333,6 +1333,11 @@ class Finding # @return [String] attr_accessor :category + # Description of the finding category. + # Corresponds to the JSON property `details` + # @return [String] + attr_accessor :details + # Location details with file path and line number. # Corresponds to the JSON property `location` # @return [Google::Apis::OndemandscanningV1beta1::FindingLocation] @@ -1355,6 +1360,7 @@ def initialize(**args) # Update properties of this object def update!(**args) @category = args[:category] if args.key?(:category) + @details = args[:details] if args.key?(:details) @location = args[:location] if args.key?(:location) @scanner = args[:scanner] if args.key?(:scanner) @severity = args[:severity] if args.key?(:severity) @@ -4208,6 +4214,14 @@ class VulnerabilityOccurrence # @return [Google::Apis::OndemandscanningV1beta1::Cvss] attr_accessor :cvss_v2 + # Common Vulnerability Scoring System. For details, see https://www.first.org/ + # cvss/specification-document This is a message we will try to use for storing + # various versions of CVSS rather than making a separate proto for storing a + # specific version. + # Corresponds to the JSON property `cvssV4` + # @return [Google::Apis::OndemandscanningV1beta1::Cvss] + attr_accessor :cvss_v4 + # Output only. CVSS version used to populate cvss_score and severity. # Corresponds to the JSON property `cvssVersion` # @return [String] @@ -4295,6 +4309,7 @@ def initialize(**args) def update!(**args) @cvss_score = args[:cvss_score] if args.key?(:cvss_score) @cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2) + @cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4) @cvss_version = args[:cvss_version] if args.key?(:cvss_version) @cvssv3 = args[:cvssv3] if args.key?(:cvssv3) @effective_severity = args[:effective_severity] if args.key?(:effective_severity) diff --git a/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/gem_version.rb b/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/gem_version.rb index ca2ef358a4d..03f1c55c216 100644 --- a/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/gem_version.rb +++ b/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module OndemandscanningV1beta1 # Version of the google-apis-ondemandscanning_v1beta1 gem - GEM_VERSION = "0.65.0" + GEM_VERSION = "0.66.0" # Version of the code generator used to generate this client - GENERATOR_VERSION = "0.18.0" + GENERATOR_VERSION = "0.19.0" # Revision of the discovery document this client was generated from - REVISION = "20260511" + REVISION = "20260601" end end end diff --git a/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/representations.rb b/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/representations.rb index f63c3e669ed..30a8b277f40 100644 --- a/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/representations.rb +++ b/generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/representations.rb @@ -1037,6 +1037,7 @@ class Finding # @private class Representation < Google::Apis::Core::JsonRepresentation property :category, as: 'category' + property :details, as: 'details' property :location, as: 'location', class: Google::Apis::OndemandscanningV1beta1::FindingLocation, decorator: Google::Apis::OndemandscanningV1beta1::FindingLocation::Representation property :scanner, as: 'scanner' @@ -1832,6 +1833,8 @@ class Representation < Google::Apis::Core::JsonRepresentation property :cvss_score, as: 'cvssScore' property :cvss_v2, as: 'cvssV2', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation + property :cvss_v4, as: 'cvssV4', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation + property :cvss_version, as: 'cvssVersion' property :cvssv3, as: 'cvssv3', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation