diff --git a/api_names_out.yaml b/api_names_out.yaml index 120b10420e0..90a855c4d85 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -287925,6 +287925,7 @@ "/run:v2/GoogleCloudRunV2ServiceMesh/mesh": mesh "/run:v2/GoogleCloudRunV2ServiceScaling": google_cloud_run_v2_service_scaling "/run:v2/GoogleCloudRunV2ServiceScaling/minInstanceCount": min_instance_count +"/run:v2/GoogleCloudRunV2ServiceScaling/scalingMode": scaling_mode "/run:v2/GoogleCloudRunV2StorageSource": google_cloud_run_v2_storage_source "/run:v2/GoogleCloudRunV2StorageSource/bucket": bucket "/run:v2/GoogleCloudRunV2StorageSource/generation": generation diff --git a/generated/google-apis-run_v2/CHANGELOG.md b/generated/google-apis-run_v2/CHANGELOG.md index 78a77688080..0b8d2de3a41 100644 --- a/generated/google-apis-run_v2/CHANGELOG.md +++ b/generated/google-apis-run_v2/CHANGELOG.md @@ -1,5 +1,9 @@ # Release history for google-apis-run_v2 +### v0.74.0 (2024-09-22) + +* Regenerated from discovery document revision 20240916 + ### v0.73.0 (2024-09-08) * Regenerated from discovery document revision 20240831 diff --git a/generated/google-apis-run_v2/lib/google/apis/run_v2/classes.rb b/generated/google-apis-run_v2/lib/google/apis/run_v2/classes.rb index 8ceb3d6a177..3a768345025 100644 --- a/generated/google-apis-run_v2/lib/google/apis/run_v2/classes.rb +++ b/generated/google-apis-run_v2/lib/google/apis/run_v2/classes.rb @@ -2500,6 +2500,11 @@ class GoogleCloudRunV2ServiceScaling # @return [Fixnum] attr_accessor :min_instance_count + # Optional. The scaling mode for the service. + # Corresponds to the JSON property `scalingMode` + # @return [String] + attr_accessor :scaling_mode + def initialize(**args) update!(**args) end @@ -2507,6 +2512,7 @@ def initialize(**args) # Update properties of this object def update!(**args) @min_instance_count = args[:min_instance_count] if args.key?(:min_instance_count) + @scaling_mode = args[:scaling_mode] if args.key?(:scaling_mode) end end diff --git a/generated/google-apis-run_v2/lib/google/apis/run_v2/gem_version.rb b/generated/google-apis-run_v2/lib/google/apis/run_v2/gem_version.rb index 8fb7d7dfdfa..ff3d5fa8c45 100644 --- a/generated/google-apis-run_v2/lib/google/apis/run_v2/gem_version.rb +++ b/generated/google-apis-run_v2/lib/google/apis/run_v2/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module RunV2 # Version of the google-apis-run_v2 gem - GEM_VERSION = "0.73.0" + GEM_VERSION = "0.74.0" # Version of the code generator used to generate this client GENERATOR_VERSION = "0.15.1" # Revision of the discovery document this client was generated from - REVISION = "20240831" + REVISION = "20240916" end end end diff --git a/generated/google-apis-run_v2/lib/google/apis/run_v2/representations.rb b/generated/google-apis-run_v2/lib/google/apis/run_v2/representations.rb index 04fcc44ffb5..1a6c9c557a8 100644 --- a/generated/google-apis-run_v2/lib/google/apis/run_v2/representations.rb +++ b/generated/google-apis-run_v2/lib/google/apis/run_v2/representations.rb @@ -1269,6 +1269,7 @@ class GoogleCloudRunV2ServiceScaling # @private class Representation < Google::Apis::Core::JsonRepresentation property :min_instance_count, as: 'minInstanceCount' + property :scaling_mode, as: 'scalingMode' end end