Skip to content

Commit 7b1f876

Browse files
feat: Automated regeneration of run v1 client (#24877)
Auto-created at 2025-11-09 09:08:22 +0000 using the toys pull request generator.
1 parent e420c81 commit 7b1f876

File tree

5 files changed

+46
-2
lines changed

5 files changed

+46
-2
lines changed

api_names_out.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340163,6 +340163,7 @@
340163340163
"/run:v1/GoogleDevtoolsCloudbuildV1BuildStep/waitFor": wait_for
340164340164
"/run:v1/GoogleDevtoolsCloudbuildV1BuildStep/waitFor/wait_for": wait_for
340165340165
"/run:v1/GoogleDevtoolsCloudbuildV1BuiltImage": google_devtools_cloudbuild_v1_built_image
340166+
"/run:v1/GoogleDevtoolsCloudbuildV1BuiltImage/artifactRegistryPackage": artifact_registry_package
340166340167
"/run:v1/GoogleDevtoolsCloudbuildV1BuiltImage/digest": digest
340167340168
"/run:v1/GoogleDevtoolsCloudbuildV1BuiltImage/name": name
340168340169
"/run:v1/GoogleDevtoolsCloudbuildV1BuiltImage/pushTiming": push_timing
@@ -340302,18 +340303,22 @@
340302340303
"/run:v1/GoogleDevtoolsCloudbuildV1TimeSpan/endTime": end_time
340303340304
"/run:v1/GoogleDevtoolsCloudbuildV1TimeSpan/startTime": start_time
340304340305
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedGoModule": google_devtools_cloudbuild_v1_uploaded_go_module
340306+
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedGoModule/artifactRegistryPackage": artifact_registry_package
340305340307
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedGoModule/fileHashes": file_hashes
340306340308
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedGoModule/pushTiming": push_timing
340307340309
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedGoModule/uri": uri
340308340310
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedMavenArtifact": google_devtools_cloudbuild_v1_uploaded_maven_artifact
340311+
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedMavenArtifact/artifactRegistryPackage": artifact_registry_package
340309340312
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedMavenArtifact/fileHashes": file_hashes
340310340313
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedMavenArtifact/pushTiming": push_timing
340311340314
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedMavenArtifact/uri": uri
340312340315
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedNpmPackage": google_devtools_cloudbuild_v1_uploaded_npm_package
340316+
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedNpmPackage/artifactRegistryPackage": artifact_registry_package
340313340317
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedNpmPackage/fileHashes": file_hashes
340314340318
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedNpmPackage/pushTiming": push_timing
340315340319
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedNpmPackage/uri": uri
340316340320
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedPythonPackage": google_devtools_cloudbuild_v1_uploaded_python_package
340321+
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedPythonPackage/artifactRegistryPackage": artifact_registry_package
340317340322
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedPythonPackage/fileHashes": file_hashes
340318340323
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedPythonPackage/pushTiming": push_timing
340319340324
"/run:v1/GoogleDevtoolsCloudbuildV1UploadedPythonPackage/uri": uri

generated/google-apis-run_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-run_v1
22

3+
### v0.95.0 (2025-11-09)
4+
5+
* Regenerated from discovery document revision 20251031
6+
37
### v0.94.0 (2025-11-02)
48

59
* Regenerated from discovery document revision 20251024

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2231,6 +2231,11 @@ def update!(**args)
22312231
class GoogleDevtoolsCloudbuildV1BuiltImage
22322232
include Google::Apis::Core::Hashable
22332233

2234+
# Output only. Path to the artifact in Artifact Registry.
2235+
# Corresponds to the JSON property `artifactRegistryPackage`
2236+
# @return [String]
2237+
attr_accessor :artifact_registry_package
2238+
22342239
# Docker Registry 2.0 digest.
22352240
# Corresponds to the JSON property `digest`
22362241
# @return [String]
@@ -2253,6 +2258,7 @@ def initialize(**args)
22532258

22542259
# Update properties of this object
22552260
def update!(**args)
2261+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
22562262
@digest = args[:digest] if args.key?(:digest)
22572263
@name = args[:name] if args.key?(:name)
22582264
@push_timing = args[:push_timing] if args.key?(:push_timing)
@@ -3246,6 +3252,11 @@ def update!(**args)
32463252
class GoogleDevtoolsCloudbuildV1UploadedGoModule
32473253
include Google::Apis::Core::Hashable
32483254

3255+
# Output only. Path to the artifact in Artifact Registry.
3256+
# Corresponds to the JSON property `artifactRegistryPackage`
3257+
# @return [String]
3258+
attr_accessor :artifact_registry_package
3259+
32493260
# Container message for hashes of byte content of files, used in
32503261
# SourceProvenance messages to verify integrity of source input to the build.
32513262
# Corresponds to the JSON property `fileHashes`
@@ -3268,6 +3279,7 @@ def initialize(**args)
32683279

32693280
# Update properties of this object
32703281
def update!(**args)
3282+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
32713283
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
32723284
@push_timing = args[:push_timing] if args.key?(:push_timing)
32733285
@uri = args[:uri] if args.key?(:uri)
@@ -3278,6 +3290,11 @@ def update!(**args)
32783290
class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
32793291
include Google::Apis::Core::Hashable
32803292

3293+
# Output only. Path to the artifact in Artifact Registry.
3294+
# Corresponds to the JSON property `artifactRegistryPackage`
3295+
# @return [String]
3296+
attr_accessor :artifact_registry_package
3297+
32813298
# Container message for hashes of byte content of files, used in
32823299
# SourceProvenance messages to verify integrity of source input to the build.
32833300
# Corresponds to the JSON property `fileHashes`
@@ -3300,6 +3317,7 @@ def initialize(**args)
33003317

33013318
# Update properties of this object
33023319
def update!(**args)
3320+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
33033321
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
33043322
@push_timing = args[:push_timing] if args.key?(:push_timing)
33053323
@uri = args[:uri] if args.key?(:uri)
@@ -3310,6 +3328,11 @@ def update!(**args)
33103328
class GoogleDevtoolsCloudbuildV1UploadedNpmPackage
33113329
include Google::Apis::Core::Hashable
33123330

3331+
# Output only. Path to the artifact in Artifact Registry.
3332+
# Corresponds to the JSON property `artifactRegistryPackage`
3333+
# @return [String]
3334+
attr_accessor :artifact_registry_package
3335+
33133336
# Container message for hashes of byte content of files, used in
33143337
# SourceProvenance messages to verify integrity of source input to the build.
33153338
# Corresponds to the JSON property `fileHashes`
@@ -3332,6 +3355,7 @@ def initialize(**args)
33323355

33333356
# Update properties of this object
33343357
def update!(**args)
3358+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
33353359
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
33363360
@push_timing = args[:push_timing] if args.key?(:push_timing)
33373361
@uri = args[:uri] if args.key?(:uri)
@@ -3342,6 +3366,11 @@ def update!(**args)
33423366
class GoogleDevtoolsCloudbuildV1UploadedPythonPackage
33433367
include Google::Apis::Core::Hashable
33443368

3369+
# Output only. Path to the artifact in Artifact Registry.
3370+
# Corresponds to the JSON property `artifactRegistryPackage`
3371+
# @return [String]
3372+
attr_accessor :artifact_registry_package
3373+
33453374
# Container message for hashes of byte content of files, used in
33463375
# SourceProvenance messages to verify integrity of source input to the build.
33473376
# Corresponds to the JSON property `fileHashes`
@@ -3364,6 +3393,7 @@ def initialize(**args)
33643393

33653394
# Update properties of this object
33663395
def update!(**args)
3396+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
33673397
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
33683398
@push_timing = args[:push_timing] if args.key?(:push_timing)
33693399
@uri = args[:uri] if args.key?(:uri)

generated/google-apis-run_v1/lib/google/apis/run_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 RunV1
1818
# Version of the google-apis-run_v1 gem
19-
GEM_VERSION = "0.94.0"
19+
GEM_VERSION = "0.95.0"
2020

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

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,6 +1398,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
13981398
class GoogleDevtoolsCloudbuildV1BuiltImage
13991399
# @private
14001400
class Representation < Google::Apis::Core::JsonRepresentation
1401+
property :artifact_registry_package, as: 'artifactRegistryPackage'
14011402
property :digest, as: 'digest'
14021403
property :name, as: 'name'
14031404
property :push_timing, as: 'pushTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1682,6 +1683,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
16821683
class GoogleDevtoolsCloudbuildV1UploadedGoModule
16831684
# @private
16841685
class Representation < Google::Apis::Core::JsonRepresentation
1686+
property :artifact_registry_package, as: 'artifactRegistryPackage'
16851687
property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes::Representation
16861688

16871689
property :push_timing, as: 'pushTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1693,6 +1695,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
16931695
class GoogleDevtoolsCloudbuildV1UploadedMavenArtifact
16941696
# @private
16951697
class Representation < Google::Apis::Core::JsonRepresentation
1698+
property :artifact_registry_package, as: 'artifactRegistryPackage'
16961699
property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes::Representation
16971700

16981701
property :push_timing, as: 'pushTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1704,6 +1707,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
17041707
class GoogleDevtoolsCloudbuildV1UploadedNpmPackage
17051708
# @private
17061709
class Representation < Google::Apis::Core::JsonRepresentation
1710+
property :artifact_registry_package, as: 'artifactRegistryPackage'
17071711
property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes::Representation
17081712

17091713
property :push_timing, as: 'pushTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation
@@ -1715,6 +1719,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
17151719
class GoogleDevtoolsCloudbuildV1UploadedPythonPackage
17161720
# @private
17171721
class Representation < Google::Apis::Core::JsonRepresentation
1722+
property :artifact_registry_package, as: 'artifactRegistryPackage'
17181723
property :file_hashes, as: 'fileHashes', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1FileHashes::Representation
17191724

17201725
property :push_timing, as: 'pushTiming', class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1TimeSpan::Representation

0 commit comments

Comments
 (0)