Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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)
Expand Down Expand Up @@ -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]
Expand Down Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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

Expand Down
Loading