Skip to content

Commit c840459

Browse files
feat: Automated regeneration of run v2 client
1 parent d872bb6 commit c840459

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337487,6 +337487,7 @@
337487337487
"/run:v2/GoogleCloudRunV2Container/ports": ports
337488337488
"/run:v2/GoogleCloudRunV2Container/ports/port": port
337489337489
"/run:v2/GoogleCloudRunV2Container/resources": resources
337490+
"/run:v2/GoogleCloudRunV2Container/source": source
337490337491
"/run:v2/GoogleCloudRunV2Container/startupProbe": startup_probe
337491337492
"/run:v2/GoogleCloudRunV2Container/volumeMounts": volume_mounts
337492337493
"/run:v2/GoogleCloudRunV2Container/volumeMounts/volume_mount": volume_mount

generated/google-apis-run_v2/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_v2
22

3+
### v0.100.0 (2025-10-26)
4+
5+
* Regenerated from discovery document revision 20251019
6+
37
### v0.99.0 (2025-10-12)
48

59
* Regenerated from discovery document revision 20251003

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,13 @@ class GoogleCloudRunV2Container
414414
# @return [Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements]
415415
attr_accessor :resources
416416

417+
# Optional. Location of the source .tar.gz file in Cloud Storage. examples: - gs:
418+
# //bucket/object.tar.gz. - gs://bucket/object.tar.gz#1234567890 (with object
419+
# generation)
420+
# Corresponds to the JSON property `source`
421+
# @return [String]
422+
attr_accessor :source
423+
417424
# Probe describes a health check to be performed against a container to
418425
# determine whether it is alive or ready to receive traffic.
419426
# Corresponds to the JSON property `startupProbe`
@@ -448,6 +455,7 @@ def update!(**args)
448455
@name = args[:name] if args.key?(:name)
449456
@ports = args[:ports] if args.key?(:ports)
450457
@resources = args[:resources] if args.key?(:resources)
458+
@source = args[:source] if args.key?(:source)
451459
@startup_probe = args[:startup_probe] if args.key?(:startup_probe)
452460
@volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts)
453461
@working_dir = args[:working_dir] if args.key?(:working_dir)

generated/google-apis-run_v2/lib/google/apis/run_v2/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 RunV2
1818
# Version of the google-apis-run_v2 gem
19-
GEM_VERSION = "0.99.0"
19+
GEM_VERSION = "0.100.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 = "20251003"
25+
REVISION = "20251019"
2626
end
2727
end
2828
end

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -871,6 +871,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
871871

872872
property :resources, as: 'resources', class: Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements, decorator: Google::Apis::RunV2::GoogleCloudRunV2ResourceRequirements::Representation
873873

874+
property :source, as: 'source'
874875
property :startup_probe, as: 'startupProbe', class: Google::Apis::RunV2::GoogleCloudRunV2Probe, decorator: Google::Apis::RunV2::GoogleCloudRunV2Probe::Representation
875876

876877
collection :volume_mounts, as: 'volumeMounts', class: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount, decorator: Google::Apis::RunV2::GoogleCloudRunV2VolumeMount::Representation

0 commit comments

Comments
 (0)