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
7 changes: 7 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46047,6 +46047,13 @@
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.debug/projectsId": projects_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.debug/servicesId": services_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.debug/versionsId": versions_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete": delete_project_location_application_service_version_instance
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/applicationsId": applications_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/instancesId": instances_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/locationsId": locations_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/projectsId": projects_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/servicesId": services_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.instances.delete/versionsId": versions_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.patch": patch_project_location_application_service_version
"/appengine:v1/appengine.projects.locations.applications.services.versions.patch/applicationsId": applications_id
"/appengine:v1/appengine.projects.locations.applications.services.versions.patch/locationsId": locations_id
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-appengine_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-appengine_v1

### v0.72.0 (2026-02-08)

* Regenerated from discovery document revision 20260202

### v0.71.0 (2026-02-01)

* Regenerated from discovery document revision 20260126
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module AppengineV1
# Version of the google-apis-appengine_v1 gem
GEM_VERSION = "0.71.0"
GEM_VERSION = "0.72.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 = "20260126"
REVISION = "20260202"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2429,6 +2429,61 @@ def debug_project_location_application_service_version_instance(projects_id, loc
command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block)
end

# Stops a running instance.The instance might be automatically recreated based
# on the scaling settings of the version. For more information, see "How
# Instances are Managed" (standard environment (https://cloud.google.com/
# appengine/docs/standard/python/how-instances-are-managed) | flexible
# environment (https://cloud.google.com/appengine/docs/flexible/python/how-
# instances-are-managed)).To ensure that instances are not re-created and avoid
# getting billed, you can stop all instances within the target version by
# changing the serving status of the version to STOPPED with the apps.services.
# versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/
# rest/v1/apps.services.versions/patch) method.
# @param [String] projects_id
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
# services/default/versions/v1/instances/instance-1.
# @param [String] locations_id
# Part of `name`. See documentation of `projectsId`.
# @param [String] applications_id
# Part of `name`. See documentation of `projectsId`.
# @param [String] services_id
# Part of `name`. See documentation of `projectsId`.
# @param [String] versions_id
# Part of `name`. See documentation of `projectsId`.
# @param [String] instances_id
# Part of `name`. See documentation of `projectsId`.
# @param [String] fields
# Selector specifying which fields to include in a partial response.
# @param [String] quota_user
# Available to use for quota purposes for server-side applications. Can be any
# arbitrary string assigned to a user, but should not exceed 40 characters.
# @param [Google::Apis::RequestOptions] options
# Request-specific options
#
# @yield [result, err] Result & error if block supplied
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
# @yieldparam err [StandardError] error object if request failed
#
# @return [Google::Apis::AppengineV1::Operation]
#
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
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)
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}/instances/{instancesId}', options)
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
command.response_class = Google::Apis::AppengineV1::Operation
command.params['projectsId'] = projects_id unless projects_id.nil?
command.params['locationsId'] = locations_id unless locations_id.nil?
command.params['applicationsId'] = applications_id unless applications_id.nil?
command.params['servicesId'] = services_id unless services_id.nil?
command.params['versionsId'] = versions_id unless versions_id.nil?
command.params['instancesId'] = instances_id unless instances_id.nil?
command.query['fields'] = fields unless fields.nil?
command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block)
end

protected

Expand Down