Skip to content

Commit

Permalink
feat: Automated regeneration of run v2 client (#20258)
Browse files Browse the repository at this point in the history
Auto-created at 2024-09-22 09:41:49 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot committed Sep 22, 2024
1 parent 7500b17 commit 0cd2493
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-run_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2500,13 +2500,19 @@ 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

# 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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0cd2493

Please sign in to comment.