Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45852,6 +45852,8 @@
"/appengine:v1beta/Version": version
"/appengine:v1beta/Version/apiConfig": api_config
"/appengine:v1beta/Version/appEngineApis": app_engine_apis
"/appengine:v1beta/Version/appEngineBundledServices": app_engine_bundled_services
"/appengine:v1beta/Version/appEngineBundledServices/app_engine_bundled_service": app_engine_bundled_service
"/appengine:v1beta/Version/automaticScaling": automatic_scaling
"/appengine:v1beta/Version/basicScaling": basic_scaling
"/appengine:v1beta/Version/betaSettings": beta_settings
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-appengine_v1beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-appengine_v1beta

### v0.61.0 (2025-11-16)

* Regenerated from discovery document revision 20251110

### v0.60.0 (2025-11-09)

* Regenerated from discovery document revision 20251103
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3321,6 +3321,11 @@ class Version
attr_accessor :app_engine_apis
alias_method :app_engine_apis?, :app_engine_apis

# List of specific App Engine Bundled Services that are enabled for this Version.
# Corresponds to the JSON property `appEngineBundledServices`
# @return [Array<String>]
attr_accessor :app_engine_bundled_services

# Automatic scaling is based on request rate, response latencies, and other
# application metrics.
# Corresponds to the JSON property `automaticScaling`
Expand Down Expand Up @@ -3581,6 +3586,7 @@ def initialize(**args)
def update!(**args)
@api_config = args[:api_config] if args.key?(:api_config)
@app_engine_apis = args[:app_engine_apis] if args.key?(:app_engine_apis)
@app_engine_bundled_services = args[:app_engine_bundled_services] if args.key?(:app_engine_bundled_services)
@automatic_scaling = args[:automatic_scaling] if args.key?(:automatic_scaling)
@basic_scaling = args[:basic_scaling] if args.key?(:basic_scaling)
@beta_settings = args[:beta_settings] if args.key?(:beta_settings)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module AppengineV1beta
# Version of the google-apis-appengine_v1beta gem
GEM_VERSION = "0.60.0"
GEM_VERSION = "0.61.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251103"
REVISION = "20251110"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1380,6 +1380,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :api_config, as: 'apiConfig', class: Google::Apis::AppengineV1beta::ApiConfigHandler, decorator: Google::Apis::AppengineV1beta::ApiConfigHandler::Representation

property :app_engine_apis, as: 'appEngineApis'
collection :app_engine_bundled_services, as: 'appEngineBundledServices'
property :automatic_scaling, as: 'automaticScaling', class: Google::Apis::AppengineV1beta::AutomaticScaling, decorator: Google::Apis::AppengineV1beta::AutomaticScaling::Representation

property :basic_scaling, as: 'basicScaling', class: Google::Apis::AppengineV1beta::BasicScaling, decorator: Google::Apis::AppengineV1beta::BasicScaling::Representation
Expand Down