File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed
generated/google-apis-run_v2 Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
2828end
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments