Skip to content

Commit 5265da2

Browse files
feat: Automated regeneration of appengine v1 client
1 parent ef45c13 commit 5265da2

File tree

6 files changed

+130
-5
lines changed

6 files changed

+130
-5
lines changed

api_names_out.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42058,6 +42058,8 @@
4205842058
"/appengine:v1/ListOperationsResponse/nextPageToken": next_page_token
4205942059
"/appengine:v1/ListOperationsResponse/operations": operations
4206042060
"/appengine:v1/ListOperationsResponse/operations/operation": operation
42061+
"/appengine:v1/ListOperationsResponse/unreachable": unreachable
42062+
"/appengine:v1/ListOperationsResponse/unreachable/unreachable": unreachable
4206142063
"/appengine:v1/ListRuntimesResponse": list_runtimes_response
4206242064
"/appengine:v1/ListRuntimesResponse/nextPageToken": next_page_token
4206342065
"/appengine:v1/ListRuntimesResponse/runtimes": runtimes
@@ -42429,6 +42431,7 @@
4242942431
"/appengine:v1/appengine.apps.operations.list/filter": filter
4243042432
"/appengine:v1/appengine.apps.operations.list/pageSize": page_size
4243142433
"/appengine:v1/appengine.apps.operations.list/pageToken": page_token
42434+
"/appengine:v1/appengine.apps.operations.list/returnPartialSuccess": return_partial_success
4243242435
"/appengine:v1/appengine.apps.patch": patch_app
4243342436
"/appengine:v1/appengine.apps.patch/appsId": apps_id
4243442437
"/appengine:v1/appengine.apps.patch/updateMask": update_mask
@@ -42536,11 +42539,22 @@
4253642539
"/appengine:v1/appengine.projects.locations.applications.domainMappings.create/locationsId": locations_id
4253742540
"/appengine:v1/appengine.projects.locations.applications.domainMappings.create/overrideStrategy": override_strategy
4253842541
"/appengine:v1/appengine.projects.locations.applications.domainMappings.create/projectsId": projects_id
42542+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.delete": delete_project_location_application_domain_mapping
42543+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.delete/applicationsId": applications_id
42544+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.delete/domainMappingsId": domain_mappings_id
42545+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.delete/locationsId": locations_id
42546+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.delete/projectsId": projects_id
4253942547
"/appengine:v1/appengine.projects.locations.applications.domainMappings.get": get_project_location_application_domain_mapping
4254042548
"/appengine:v1/appengine.projects.locations.applications.domainMappings.get/applicationsId": applications_id
4254142549
"/appengine:v1/appengine.projects.locations.applications.domainMappings.get/domainMappingsId": domain_mappings_id
4254242550
"/appengine:v1/appengine.projects.locations.applications.domainMappings.get/locationsId": locations_id
4254342551
"/appengine:v1/appengine.projects.locations.applications.domainMappings.get/projectsId": projects_id
42552+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.patch": patch_project_location_application_domain_mapping
42553+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.patch/applicationsId": applications_id
42554+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.patch/domainMappingsId": domain_mappings_id
42555+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.patch/locationsId": locations_id
42556+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.patch/projectsId": projects_id
42557+
"/appengine:v1/appengine.projects.locations.applications.domainMappings.patch/updateMask": update_mask
4254442558
"/appengine:v1/appengine.projects.locations.applications.get": get_project_location_application
4254542559
"/appengine:v1/appengine.projects.locations.applications.get/applicationsId": applications_id
4254642560
"/appengine:v1/appengine.projects.locations.applications.get/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.66.0 (2025-10-05)
4+
5+
* Regenerated from discovery document revision 20250930
6+
37
### v0.65.0 (2025-08-24)
48

59
* Regenerated from discovery document revision 20250816

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1645,6 +1645,13 @@ class ListOperationsResponse
16451645
# @return [Array<Google::Apis::AppengineV1::Operation>]
16461646
attr_accessor :operations
16471647

1648+
# Unordered list. Unreachable resources. Populated when the request sets
1649+
# ListOperationsRequest.return_partial_success and reads across collections e.g.
1650+
# when attempting to list all resources across all supported locations.
1651+
# Corresponds to the JSON property `unreachable`
1652+
# @return [Array<String>]
1653+
attr_accessor :unreachable
1654+
16481655
def initialize(**args)
16491656
update!(**args)
16501657
end
@@ -1653,6 +1660,7 @@ def initialize(**args)
16531660
def update!(**args)
16541661
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
16551662
@operations = args[:operations] if args.key?(:operations)
1663+
@unreachable = args[:unreachable] if args.key?(:unreachable)
16561664
end
16571665
end
16581666

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.65.0"
19+
GEM_VERSION = "0.66.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 = "20250816"
25+
REVISION = "20250930"
2626
end
2727
end
2828
end

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -938,6 +938,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
938938
property :next_page_token, as: 'nextPageToken'
939939
collection :operations, as: 'operations', class: Google::Apis::AppengineV1::Operation, decorator: Google::Apis::AppengineV1::Operation::Representation
940940

941+
collection :unreachable, as: 'unreachable'
941942
end
942943
end
943944

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

Lines changed: 101 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -909,8 +909,8 @@ def get_app_location(apps_id, locations_id, fields: nil, quota_user: nil, option
909909
# @param [String] apps_id
910910
# Part of `name`. The resource that owns the locations collection, if applicable.
911911
# @param [Array<String>, String] extra_location_types
912-
# Optional. Do not use this field. It is unsupported and is ignored unless
913-
# explicitly documented otherwise. This is primarily for internal usage.
912+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
913+
# field which is primarily intended for internal usage.
914914
# @param [String] filter
915915
# A filter to narrow down results to a preferred subset. The filtering language
916916
# accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -996,6 +996,13 @@ def get_app_operation(apps_id, operations_id, fields: nil, quota_user: nil, opti
996996
# The standard list page size.
997997
# @param [String] page_token
998998
# The standard list page token.
999+
# @param [Boolean] return_partial_success
1000+
# When set to true, operations that are reachable are returned as normal, and
1001+
# those that are unreachable are returned in the ListOperationsResponse.
1002+
# unreachable field.This can only be true when reading across collections e.g.
1003+
# when parent is set to "projects/example/locations/-".This field is not by
1004+
# default supported and will result in an UNIMPLEMENTED error if set unless
1005+
# explicitly documented otherwise in service or product specific documentation.
9991006
# @param [String] fields
10001007
# Selector specifying which fields to include in a partial response.
10011008
# @param [String] quota_user
@@ -1013,14 +1020,15 @@ def get_app_operation(apps_id, operations_id, fields: nil, quota_user: nil, opti
10131020
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10141021
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10151022
# @raise [Google::Apis::AuthorizationError] Authorization is required
1016-
def list_app_operations(apps_id, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1023+
def list_app_operations(apps_id, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
10171024
command = make_simple_command(:get, 'v1/apps/{appsId}/operations', options)
10181025
command.response_representation = Google::Apis::AppengineV1::ListOperationsResponse::Representation
10191026
command.response_class = Google::Apis::AppengineV1::ListOperationsResponse
10201027
command.params['appsId'] = apps_id unless apps_id.nil?
10211028
command.query['filter'] = filter unless filter.nil?
10221029
command.query['pageSize'] = page_size unless page_size.nil?
10231030
command.query['pageToken'] = page_token unless page_token.nil?
1031+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
10241032
command.query['fields'] = fields unless fields.nil?
10251033
command.query['quotaUser'] = quota_user unless quota_user.nil?
10261034
execute_or_queue_command(command, &block)
@@ -1960,6 +1968,47 @@ def create_project_location_application_domain_mapping(projects_id, locations_id
19601968
execute_or_queue_command(command, &block)
19611969
end
19621970

1971+
# Deletes the specified domain mapping. A user must be authorized to administer
1972+
# the associated domain in order to delete a DomainMapping resource.
1973+
# @param [String] projects_id
1974+
# Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/
1975+
# domainMappings/example.com.
1976+
# @param [String] locations_id
1977+
# Part of `name`. See documentation of `projectsId`.
1978+
# @param [String] applications_id
1979+
# Part of `name`. See documentation of `projectsId`.
1980+
# @param [String] domain_mappings_id
1981+
# Part of `name`. See documentation of `projectsId`.
1982+
# @param [String] fields
1983+
# Selector specifying which fields to include in a partial response.
1984+
# @param [String] quota_user
1985+
# Available to use for quota purposes for server-side applications. Can be any
1986+
# arbitrary string assigned to a user, but should not exceed 40 characters.
1987+
# @param [Google::Apis::RequestOptions] options
1988+
# Request-specific options
1989+
#
1990+
# @yield [result, err] Result & error if block supplied
1991+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1992+
# @yieldparam err [StandardError] error object if request failed
1993+
#
1994+
# @return [Google::Apis::AppengineV1::Operation]
1995+
#
1996+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1997+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1998+
# @raise [Google::Apis::AuthorizationError] Authorization is required
1999+
def delete_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, fields: nil, quota_user: nil, options: nil, &block)
2000+
command = make_simple_command(:delete, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
2001+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
2002+
command.response_class = Google::Apis::AppengineV1::Operation
2003+
command.params['projectsId'] = projects_id unless projects_id.nil?
2004+
command.params['locationsId'] = locations_id unless locations_id.nil?
2005+
command.params['applicationsId'] = applications_id unless applications_id.nil?
2006+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
2007+
command.query['fields'] = fields unless fields.nil?
2008+
command.query['quotaUser'] = quota_user unless quota_user.nil?
2009+
execute_or_queue_command(command, &block)
2010+
end
2011+
19632012
# Gets the specified domain mapping.
19642013
# @param [String] projects_id
19652014
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
@@ -2000,6 +2049,55 @@ def get_project_location_application_domain_mapping(projects_id, locations_id, a
20002049
execute_or_queue_command(command, &block)
20012050
end
20022051

2052+
# Updates the specified domain mapping. To map an SSL certificate to a domain
2053+
# mapping, update certificate_id to point to an AuthorizedCertificate resource.
2054+
# A user must be authorized to administer the associated domain in order to
2055+
# update a DomainMapping resource.
2056+
# @param [String] projects_id
2057+
# Part of `name`. Required. Name of the resource to update. Example: apps/myapp/
2058+
# domainMappings/example.com.
2059+
# @param [String] locations_id
2060+
# Part of `name`. See documentation of `projectsId`.
2061+
# @param [String] applications_id
2062+
# Part of `name`. See documentation of `projectsId`.
2063+
# @param [String] domain_mappings_id
2064+
# Part of `name`. See documentation of `projectsId`.
2065+
# @param [Google::Apis::AppengineV1::DomainMapping] domain_mapping_object
2066+
# @param [String] update_mask
2067+
# Required. Standard field mask for the set of fields to be updated.
2068+
# @param [String] fields
2069+
# Selector specifying which fields to include in a partial response.
2070+
# @param [String] quota_user
2071+
# Available to use for quota purposes for server-side applications. Can be any
2072+
# arbitrary string assigned to a user, but should not exceed 40 characters.
2073+
# @param [Google::Apis::RequestOptions] options
2074+
# Request-specific options
2075+
#
2076+
# @yield [result, err] Result & error if block supplied
2077+
# @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
2078+
# @yieldparam err [StandardError] error object if request failed
2079+
#
2080+
# @return [Google::Apis::AppengineV1::Operation]
2081+
#
2082+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2083+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2084+
# @raise [Google::Apis::AuthorizationError] Authorization is required
2085+
def patch_project_location_application_domain_mapping(projects_id, locations_id, applications_id, domain_mappings_id, domain_mapping_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
2086+
command = make_simple_command(:patch, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}', options)
2087+
command.request_representation = Google::Apis::AppengineV1::DomainMapping::Representation
2088+
command.request_object = domain_mapping_object
2089+
command.response_representation = Google::Apis::AppengineV1::Operation::Representation
2090+
command.response_class = Google::Apis::AppengineV1::Operation
2091+
command.params['projectsId'] = projects_id unless projects_id.nil?
2092+
command.params['locationsId'] = locations_id unless locations_id.nil?
2093+
command.params['applicationsId'] = applications_id unless applications_id.nil?
2094+
command.params['domainMappingsId'] = domain_mappings_id unless domain_mappings_id.nil?
2095+
command.query['updateMask'] = update_mask unless update_mask.nil?
2096+
command.query['fields'] = fields unless fields.nil?
2097+
command.query['quotaUser'] = quota_user unless quota_user.nil?
2098+
execute_or_queue_command(command, &block)
2099+
end
2100+
20032101
# Deletes the specified service and all enclosed versions.
20042102
# @param [String] projects_id
20052103
# Part of `name`. Required. Name of the resource requested. Example: apps/myapp/

0 commit comments

Comments
 (0)