Skip to content

Commit 15b0466

Browse files
feat: Automated regeneration of appengine v1 client (googleapis#20400)
Auto-created at 2024-10-20 09:12:01 +0000 using the toys pull request generator.
1 parent 71dd85b commit 15b0466

File tree

4 files changed

+55
-2
lines changed

4 files changed

+55
-2
lines changed

api_names_out.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35835,6 +35835,12 @@
3583535835
"/appengine:v1/appengine.projects.locations.applications.services.list/pageSize": page_size
3583635836
"/appengine:v1/appengine.projects.locations.applications.services.list/pageToken": page_token
3583735837
"/appengine:v1/appengine.projects.locations.applications.services.list/projectsId": projects_id
35838+
"/appengine:v1/appengine.projects.locations.applications.services.versions.delete": delete_project_location_application_service_version
35839+
"/appengine:v1/appengine.projects.locations.applications.services.versions.delete/applicationsId": applications_id
35840+
"/appengine:v1/appengine.projects.locations.applications.services.versions.delete/locationsId": locations_id
35841+
"/appengine:v1/appengine.projects.locations.applications.services.versions.delete/projectsId": projects_id
35842+
"/appengine:v1/appengine.projects.locations.applications.services.versions.delete/servicesId": services_id
35843+
"/appengine:v1/appengine.projects.locations.applications.services.versions.delete/versionsId": versions_id
3583835844
"/appengine:v1/fields": fields
3583935845
"/appengine:v1/key": key
3584035846
"/appengine:v1/quotaUser": quota_user

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.54.0 (2024-10-20)
4+
5+
* Regenerated from discovery document revision 20241007
6+
37
### v0.53.0 (2024-09-15)
48

59
* Regenerated from discovery document revision 20240906

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.53.0"
19+
GEM_VERSION = "0.54.0"
2020

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

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

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

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,6 +1635,49 @@ def list_project_location_application_authorized_domains(projects_id, locations_
16351635
command.query['quotaUser'] = quota_user unless quota_user.nil?
16361636
execute_or_queue_command(command, &block)
16371637
end
1638+
1639+
# Deletes an existing Version resource.
1640+
# @param [String] projects_id
1641+
# Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1642+
# default/versions/v1.
1643+
# @param [String] locations_id
1644+
# Part of `name`. See documentation of `projectsId`.
1645+
# @param [String] applications_id
1646+
# Part of `name`. See documentation of `projectsId`.
1647+
# @param [String] services_id
1648+
# Part of `name`. See documentation of `projectsId`.
1649+
# @param [String] versions_id
1650+
# Part of `name`. See documentation of `projectsId`.
1651+
# @param [String] fields
1652+
# Selector specifying which fields to include in a partial response.
1653+
# @param [String] quota_user
1654+
# Available to use for quota purposes for server-side applications. Can be any
1655+
# arbitrary string assigned to a user, but should not exceed 40 characters.
1656+
# @param [Google::Apis::RequestOptions] options
1657+
# Request-specific options
1658+
#
1659+
# @yield [result, err] Result & error if block supplied
1660+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1661+
# @yieldparam err [StandardError] error object if request failed
1662+
#
1663+
# @return [Google::Apis::AppengineV1::Operation]
1664+
#
1665+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1666+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1667+
# @raise [Google::Apis::AuthorizationError] Authorization is required
1668+
def delete_project_location_application_service_version(projects_id, locations_id, applications_id, services_id, versions_id, fields: nil, quota_user: nil, options: nil, &block)
1669+
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}', options)
1670+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
1671+
command.response_class = Google::Apis::AppengineV1::Operation
1672+
command.params['projectsId'] = projects_id unless projects_id.nil?
1673+
command.params['locationsId'] = locations_id unless locations_id.nil?
1674+
command.params['applicationsId'] = applications_id unless applications_id.nil?
1675+
command.params['servicesId'] = services_id unless services_id.nil?
1676+
command.params['versionsId'] = versions_id unless versions_id.nil?
1677+
command.query['fields'] = fields unless fields.nil?
1678+
command.query['quotaUser'] = quota_user unless quota_user.nil?
1679+
execute_or_queue_command(command, &block)
1680+
end
16381681

16391682
protected
16401683

0 commit comments

Comments
 (0)