Skip to content

Commit 01c1cf2

Browse files
feat: Automated regeneration of appengine v1 client (googleapis#25676)
Auto-created at 2026-02-08 11:10:32 +0000 using the toys pull request generator.
1 parent 7bb2396 commit 01c1cf2

4 files changed

Lines changed: 68 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46196,6 +46196,13 @@
4619646196
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.debug/projectsId": projects_id
4619746197
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.debug/servicesId": services_id
4619846198
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.debug/versionsId": versions_id
46199+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete": delete_project_location_application_service_version_instance
46200+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/applicationsId": applications_id
46201+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/instancesId": instances_id
46202+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/locationsId": locations_id
46203+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/projectsId": projects_id
46204+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/servicesId": services_id
46205+
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/versionsId": versions_id
4619946206
"/appengine:v1/appengine.projects.locations.applications.services.versions.patch": patch_project_location_application_service_version
4620046207
"/appengine:v1/appengine.projects.locations.applications.services.versions.patch/applicationsId": applications_id
4620146208
"/appengine:v1/appengine.projects.locations.applications.services.versions.patch/locationsId": locations_id

generated/google-apis-appengine_v1/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-appengine_v1
22

3+
### v0.72.0 (2026-02-08)
4+
5+
* Regenerated from discovery document revision 20260202
6+
37
### v0.71.0 (2026-02-01)
48

59
* Regenerated from discovery document revision 20260126

generated/google-apis-appengine_v1/lib/google/apis/appengine_v1/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 AppengineV1
1818
# Version of the google-apis-appengine_v1 gem
19-
GEM_VERSION = "0.71.0"
19+
GEM_VERSION = "0.72.0"
2020

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

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260126"
25+
REVISION = "20260202"
2626
end
2727
end
2828
end

generated/google-apis-appengine_v1/lib/google/apis/appengine_v1/service.rb

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2429,6 +2429,61 @@ def debug_project_location_application_service_version_instance(projects_id, loc
24292429
command.query['quotaUser'] = quota_user unless quota_user.nil?
24302430
execute_or_queue_command(command, &block)
24312431
end
2432+
2433+
# Stops a running instance.The instance might be automatically recreated based
2434+
# on the scaling settings of the version. For more information, see "How
2435+
# Instances are Managed" (standard environment (https://cloud.google.com/
2436+
# appengine/docs/standard/python/how-instances-are-managed) | flexible
2437+
# environment (https://cloud.google.com/appengine/docs/flexible/python/how-
2438+
# instances-are-managed)).To ensure that instances are not re-created and avoid
2439+
# getting billed, you can stop all instances within the target version by
2440+
# changing the serving status of the version to STOPPED with the apps.services.
2441+
# versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/
2442+
# rest/v1/apps.services.versions/patch) method.
2443+
# @param [String] projects_id
2444+
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
2445+
# services/default/versions/v1/instances/instance-1.
2446+
# @param [String] locations_id
2447+
# Part of `name`. See documentation of `projectsId`.
2448+
# @param [String] applications_id
2449+
# Part of `name`. See documentation of `projectsId`.
2450+
# @param [String] services_id
2451+
# Part of `name`. See documentation of `projectsId`.
2452+
# @param [String] versions_id
2453+
# Part of `name`. See documentation of `projectsId`.
2454+
# @param [String] instances_id
2455+
# Part of `name`. See documentation of `projectsId`.
2456+
# @param [String] fields
2457+
# Selector specifying which fields to include in a partial response.
2458+
# @param [String] quota_user
2459+
# Available to use for quota purposes for server-side applications. Can be any
2460+
# arbitrary string assigned to a user, but should not exceed 40 characters.
2461+
# @param [Google::Apis::RequestOptions] options
2462+
# Request-specific options
2463+
#
2464+
# @yield [result, err] Result & error if block supplied
2465+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
2466+
# @yieldparam err [StandardError] error object if request failed
2467+
#
2468+
# @return [Google::Apis::AppengineV1::Operation]
2469+
#
2470+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2471+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2472+
# @raise [Google::Apis::AuthorizationError] Authorization is required
2473+
def delete_project_location_application_service_version_instance(projects_id, locations_id, applications_id, services_id, versions_id, instances_id, fields: nil, quota_user: nil, options: nil, &block)
2474+
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}', options)
2475+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
2476+
command.response_class = Google::Apis::AppengineV1::Operation
2477+
command.params['projectsId'] = projects_id unless projects_id.nil?
2478+
command.params['locationsId'] = locations_id unless locations_id.nil?
2479+
command.params['applicationsId'] = applications_id unless applications_id.nil?
2480+
command.params['servicesId'] = services_id unless services_id.nil?
2481+
command.params['versionsId'] = versions_id unless versions_id.nil?
2482+
command.params['instancesId'] = instances_id unless instances_id.nil?
2483+
command.query['fields'] = fields unless fields.nil?
2484+
command.query['quotaUser'] = quota_user unless quota_user.nil?
2485+
execute_or_queue_command(command, &block)
2486+
end
24322487

24332488
protected
24342489

0 commit comments

Comments
 (0)