Skip to content

Commit a9a9a3d

Browse files
feat: Automated regeneration of ondemandscanning v1beta1 client
1 parent 3f4a182 commit a9a9a3d

7 files changed

Lines changed: 30 additions & 5 deletions

File tree

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338061,6 +338061,7 @@
338061338061
"/ondemandscanning:v1beta1/Finding": finding
338062338062
"/ondemandscanning:v1beta1/Finding/category": category
338063338063
"/ondemandscanning:v1beta1/Finding/description": description
338064+
"/ondemandscanning:v1beta1/Finding/details": details
338064338065
"/ondemandscanning:v1beta1/Finding/filePath": file_path
338065338066
"/ondemandscanning:v1beta1/Finding/location": location
338066338067
"/ondemandscanning:v1beta1/Finding/ruleId": rule_id
@@ -338516,6 +338517,7 @@
338516338517
"/ondemandscanning:v1beta1/VulnerabilityOccurrence": vulnerability_occurrence
338517338518
"/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssScore": cvss_score
338518338519
"/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssV2": cvss_v2
338520+
"/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssV4": cvss_v4
338519338521
"/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssVersion": cvss_version
338520338522
"/ondemandscanning:v1beta1/VulnerabilityOccurrence/cvssv3": cvssv3
338521338523
"/ondemandscanning:v1beta1/VulnerabilityOccurrence/effectiveSeverity": effective_severity

generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-ondemandscanning_v1beta1
22

3+
### v0.66.0 (2026-06-14)
4+
5+
* Regenerated from discovery document revision 20260601
6+
* Regenerated using generator version 0.19.0
7+
38
### v0.65.0 (2026-05-17)
49

510
* Regenerated from discovery document revision 20260511

generated/google-apis-ondemandscanning_v1beta1/OVERVIEW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/container-analysis/docs/on-
8383

8484
## Supported Ruby versions
8585

86-
This library is supported on Ruby 3.1+.
86+
This library is supported on Ruby 3.2+.
8787

8888
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.
8989

generated/google-apis-ondemandscanning_v1beta1/google-apis-ondemandscanning_v1beta1.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
2828
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
2929
gem.require_paths = ["lib"]
3030

31-
gem.required_ruby_version = '>= 3.1'
31+
gem.required_ruby_version = '>= 3.2'
3232
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
3333
end

generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/classes.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,11 @@ class Finding
13331333
# @return [String]
13341334
attr_accessor :category
13351335

1336+
# Description of the finding category.
1337+
# Corresponds to the JSON property `details`
1338+
# @return [String]
1339+
attr_accessor :details
1340+
13361341
# Location details with file path and line number.
13371342
# Corresponds to the JSON property `location`
13381343
# @return [Google::Apis::OndemandscanningV1beta1::FindingLocation]
@@ -1355,6 +1360,7 @@ def initialize(**args)
13551360
# Update properties of this object
13561361
def update!(**args)
13571362
@category = args[:category] if args.key?(:category)
1363+
@details = args[:details] if args.key?(:details)
13581364
@location = args[:location] if args.key?(:location)
13591365
@scanner = args[:scanner] if args.key?(:scanner)
13601366
@severity = args[:severity] if args.key?(:severity)
@@ -4208,6 +4214,14 @@ class VulnerabilityOccurrence
42084214
# @return [Google::Apis::OndemandscanningV1beta1::Cvss]
42094215
attr_accessor :cvss_v2
42104216

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+
42114225
# Output only. CVSS version used to populate cvss_score and severity.
42124226
# Corresponds to the JSON property `cvssVersion`
42134227
# @return [String]
@@ -4295,6 +4309,7 @@ def initialize(**args)
42954309
def update!(**args)
42964310
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
42974311
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
4312+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
42984313
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
42994314
@cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
43004315
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)

generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module OndemandscanningV1beta1
1818
# Version of the google-apis-ondemandscanning_v1beta1 gem
19-
GEM_VERSION = "0.65.0"
19+
GEM_VERSION = "0.66.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.18.0"
22+
GENERATOR_VERSION = "0.19.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260511"
25+
REVISION = "20260601"
2626
end
2727
end
2828
end

generated/google-apis-ondemandscanning_v1beta1/lib/google/apis/ondemandscanning_v1beta1/representations.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,6 +1037,7 @@ class Finding
10371037
# @private
10381038
class Representation < Google::Apis::Core::JsonRepresentation
10391039
property :category, as: 'category'
1040+
property :details, as: 'details'
10401041
property :location, as: 'location', class: Google::Apis::OndemandscanningV1beta1::FindingLocation, decorator: Google::Apis::OndemandscanningV1beta1::FindingLocation::Representation
10411042

10421043
property :scanner, as: 'scanner'
@@ -1832,6 +1833,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
18321833
property :cvss_score, as: 'cvssScore'
18331834
property :cvss_v2, as: 'cvssV2', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
18341835

1836+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
1837+
18351838
property :cvss_version, as: 'cvssVersion'
18361839
property :cvssv3, as: 'cvssv3', class: Google::Apis::OndemandscanningV1beta1::Cvss, decorator: Google::Apis::OndemandscanningV1beta1::Cvss::Representation
18371840

0 commit comments

Comments
 (0)