Skip to content

Commit 254c347

Browse files
feat: Automated regeneration of containeranalysis v1 client (googleapis#27165)
Auto-created at 2026-06-21 12:05:45 +0000 using the toys pull request generator.
1 parent df49dbf commit 254c347

5 files changed

Lines changed: 38 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155508,6 +155508,7 @@
155508155508
"/containeranalysis:v1/Finding": finding
155509155509
"/containeranalysis:v1/Finding/category": category
155510155510
"/containeranalysis:v1/Finding/description": description
155511+
"/containeranalysis:v1/Finding/details": details
155511155512
"/containeranalysis:v1/Finding/filePath": file_path
155512155513
"/containeranalysis:v1/Finding/location": location
155513155514
"/containeranalysis:v1/Finding/ruleId": rule_id
@@ -156003,6 +156004,7 @@
156003156004
"/containeranalysis:v1/VulnerabilityNote/cvssScore": cvss_score
156004156005
"/containeranalysis:v1/VulnerabilityNote/cvssV2": cvss_v2
156005156006
"/containeranalysis:v1/VulnerabilityNote/cvssV3": cvss_v3
156007+
"/containeranalysis:v1/VulnerabilityNote/cvssV4": cvss_v4
156006156008
"/containeranalysis:v1/VulnerabilityNote/cvssVersion": cvss_version
156007156009
"/containeranalysis:v1/VulnerabilityNote/details": details
156008156010
"/containeranalysis:v1/VulnerabilityNote/details/detail": detail
@@ -156014,6 +156016,7 @@
156014156016
"/containeranalysis:v1/VulnerabilityOccurrence": vulnerability_occurrence
156015156017
"/containeranalysis:v1/VulnerabilityOccurrence/cvssScore": cvss_score
156016156018
"/containeranalysis:v1/VulnerabilityOccurrence/cvssV2": cvss_v2
156019+
"/containeranalysis:v1/VulnerabilityOccurrence/cvssV4": cvss_v4
156017156020
"/containeranalysis:v1/VulnerabilityOccurrence/cvssVersion": cvss_version
156018156021
"/containeranalysis:v1/VulnerabilityOccurrence/cvssv3": cvssv3
156019156022
"/containeranalysis:v1/VulnerabilityOccurrence/effectiveSeverity": effective_severity

generated/google-apis-containeranalysis_v1/CHANGELOG.md

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

3+
### v0.77.0 (2026-06-21)
4+
5+
* Regenerated from discovery document revision 20260610
6+
37
### v0.76.0 (2026-06-14)
48

59
* Regenerated using generator version 0.19.0

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4421,6 +4421,11 @@ class Finding
44214421
# @return [String]
44224422
attr_accessor :category
44234423

4424+
# Description of the finding category.
4425+
# Corresponds to the JSON property `details`
4426+
# @return [String]
4427+
attr_accessor :details
4428+
44244429
# Location details with file path and line number.
44254430
# Corresponds to the JSON property `location`
44264431
# @return [Google::Apis::ContaineranalysisV1::FindingLocation]
@@ -4443,6 +4448,7 @@ def initialize(**args)
44434448
# Update properties of this object
44444449
def update!(**args)
44454450
@category = args[:category] if args.key?(:category)
4451+
@details = args[:details] if args.key?(:details)
44464452
@location = args[:location] if args.key?(:location)
44474453
@scanner = args[:scanner] if args.key?(:scanner)
44484454
@severity = args[:severity] if args.key?(:severity)
@@ -7881,6 +7887,14 @@ class VulnerabilityNote
78817887
# @return [Google::Apis::ContaineranalysisV1::CvsSv3]
78827888
attr_accessor :cvss_v3
78837889

7890+
# Common Vulnerability Scoring System. For details, see https://www.first.org/
7891+
# cvss/specification-document This is a message we will try to use for storing
7892+
# various versions of CVSS rather than making a separate proto for storing a
7893+
# specific version.
7894+
# Corresponds to the JSON property `cvssV4`
7895+
# @return [Google::Apis::ContaineranalysisV1::Cvss]
7896+
attr_accessor :cvss_v4
7897+
78847898
# CVSS version used to populate cvss_score and severity.
78857899
# Corresponds to the JSON property `cvssVersion`
78867900
# @return [String]
@@ -7921,6 +7935,7 @@ def update!(**args)
79217935
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
79227936
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
79237937
@cvss_v3 = args[:cvss_v3] if args.key?(:cvss_v3)
7938+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
79247939
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
79257940
@details = args[:details] if args.key?(:details)
79267941
@severity = args[:severity] if args.key?(:severity)
@@ -7947,6 +7962,14 @@ class VulnerabilityOccurrence
79477962
# @return [Google::Apis::ContaineranalysisV1::Cvss]
79487963
attr_accessor :cvss_v2
79497964

7965+
# Common Vulnerability Scoring System. For details, see https://www.first.org/
7966+
# cvss/specification-document This is a message we will try to use for storing
7967+
# various versions of CVSS rather than making a separate proto for storing a
7968+
# specific version.
7969+
# Corresponds to the JSON property `cvssV4`
7970+
# @return [Google::Apis::ContaineranalysisV1::Cvss]
7971+
attr_accessor :cvss_v4
7972+
79507973
# Output only. CVSS version used to populate cvss_score and severity.
79517974
# Corresponds to the JSON property `cvssVersion`
79527975
# @return [String]
@@ -8034,6 +8057,7 @@ def initialize(**args)
80348057
def update!(**args)
80358058
@cvss_score = args[:cvss_score] if args.key?(:cvss_score)
80368059
@cvss_v2 = args[:cvss_v2] if args.key?(:cvss_v2)
8060+
@cvss_v4 = args[:cvss_v4] if args.key?(:cvss_v4)
80378061
@cvss_version = args[:cvss_version] if args.key?(:cvss_version)
80388062
@cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
80398063
@effective_severity = args[:effective_severity] if args.key?(:effective_severity)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module ContaineranalysisV1
1818
# Version of the google-apis-containeranalysis_v1 gem
19-
GEM_VERSION = "0.76.0"
19+
GEM_VERSION = "0.77.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.19.0"
2323

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2315,6 +2315,7 @@ class Finding
23152315
# @private
23162316
class Representation < Google::Apis::Core::JsonRepresentation
23172317
property :category, as: 'category'
2318+
property :details, as: 'details'
23182319
property :location, as: 'location', class: Google::Apis::ContaineranalysisV1::FindingLocation, decorator: Google::Apis::ContaineranalysisV1::FindingLocation::Representation
23192320

23202321
property :scanner, as: 'scanner'
@@ -3271,6 +3272,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
32713272

32723273
property :cvss_v3, as: 'cvssV3', class: Google::Apis::ContaineranalysisV1::CvsSv3, decorator: Google::Apis::ContaineranalysisV1::CvsSv3::Representation
32733274

3275+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
3276+
32743277
property :cvss_version, as: 'cvssVersion'
32753278
collection :details, as: 'details', class: Google::Apis::ContaineranalysisV1::Detail, decorator: Google::Apis::ContaineranalysisV1::Detail::Representation
32763279

@@ -3287,6 +3290,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
32873290
property :cvss_score, as: 'cvssScore'
32883291
property :cvss_v2, as: 'cvssV2', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
32893292

3293+
property :cvss_v4, as: 'cvssV4', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
3294+
32903295
property :cvss_version, as: 'cvssVersion'
32913296
property :cvssv3, as: 'cvssv3', class: Google::Apis::ContaineranalysisV1::Cvss, decorator: Google::Apis::ContaineranalysisV1::Cvss::Representation
32923297

0 commit comments

Comments
 (0)