Skip to content

Commit 0cd2493

Browse files
feat: Automated regeneration of run v2 client (googleapis#20258)
Auto-created at 2024-09-22 09:41:49 +0000 using the toys pull request generator.
1 parent 7500b17 commit 0cd2493

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287925,6 +287925,7 @@
287925287925
"/run:v2/GoogleCloudRunV2ServiceMesh/mesh": mesh
287926287926
"/run:v2/GoogleCloudRunV2ServiceScaling": google_cloud_run_v2_service_scaling
287927287927
"/run:v2/GoogleCloudRunV2ServiceScaling/minInstanceCount": min_instance_count
287928+
"/run:v2/GoogleCloudRunV2ServiceScaling/scalingMode": scaling_mode
287928287929
"/run:v2/GoogleCloudRunV2StorageSource": google_cloud_run_v2_storage_source
287929287930
"/run:v2/GoogleCloudRunV2StorageSource/bucket": bucket
287930287931
"/run:v2/GoogleCloudRunV2StorageSource/generation": generation

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.74.0 (2024-09-22)
4+
5+
* Regenerated from discovery document revision 20240916
6+
37
### v0.73.0 (2024-09-08)
48

59
* Regenerated from discovery document revision 20240831

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2500,13 +2500,19 @@ class GoogleCloudRunV2ServiceScaling
25002500
# @return [Fixnum]
25012501
attr_accessor :min_instance_count
25022502

2503+
# Optional. The scaling mode for the service.
2504+
# Corresponds to the JSON property `scalingMode`
2505+
# @return [String]
2506+
attr_accessor :scaling_mode
2507+
25032508
def initialize(**args)
25042509
update!(**args)
25052510
end
25062511

25072512
# Update properties of this object
25082513
def update!(**args)
25092514
@min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count)
2515+
@scaling_mode = args[:scaling_mode] if args.key?(:scaling_mode)
25102516
end
25112517
end
25122518

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.73.0"
19+
GEM_VERSION = "0.74.0"
2020

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

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20240831"
25+
REVISION = "20240916"
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
@@ -1269,6 +1269,7 @@ class GoogleCloudRunV2ServiceScaling
12691269
# @private
12701270
class Representation < Google::Apis::Core::JsonRepresentation
12711271
property :min_instance_count, as: 'minInstanceCount'
1272+
property :scaling_mode, as: 'scalingMode'
12721273
end
12731274
end
12741275

0 commit comments

Comments
 (0)