Skip to content

Commit 6b202a6

Browse files
feat: Automated regeneration of cloudfunctions v2beta client (googleapis#22330)
Auto-created at 2025-03-30 10:50:38 +0000 using the toys pull request generator.
1 parent ba6b9e8 commit 6b202a6

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69607,6 +69607,7 @@
6960769607
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.functions.testIamPermissions": test_function_iam_permissions
6960869608
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.functions.testIamPermissions/resource": resource
6960969609
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.list": list_project_locations
69610+
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.list/extraLocationTypes": extra_location_types
6961069611
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.list/filter": filter
6961169612
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.list/name": name
6961269613
"/cloudfunctions:v2beta/cloudfunctions.projects.locations.list/pageSize": page_size

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

3+
### v0.49.0 (2025-03-30)
4+
5+
* Regenerated from discovery document revision 20250320
6+
37
### v0.48.0 (2025-03-09)
48

59
* Regenerated from discovery document revision 20250228

generated/google-apis-cloudfunctions_v2beta/lib/google/apis/cloudfunctions_v2beta/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 CloudfunctionsV2beta
1818
# Version of the google-apis-cloudfunctions_v2beta gem
19-
GEM_VERSION = "0.48.0"
19+
GEM_VERSION = "0.49.0"
2020

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

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

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ def initialize
5454
# Lists information about the supported locations for this service.
5555
# @param [String] name
5656
# The resource that owns the locations collection, if applicable.
57+
# @param [Array<String>, String] extra_location_types
58+
# Optional. A list of extra location types that should be used as conditions for
59+
# controlling the visibility of the locations.
5760
# @param [String] filter
5861
# A filter to narrow down results to a preferred subset. The filtering language
5962
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -81,11 +84,12 @@ def initialize
8184
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8285
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8386
# @raise [Google::Apis::AuthorizationError] Authorization is required
84-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
87+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
8588
command = make_simple_command(:get, 'v2beta/{+name}/locations', options)
8689
command.response_representation = Google::Apis::CloudfunctionsV2beta::ListLocationsResponse::Representation
8790
command.response_class = Google::Apis::CloudfunctionsV2beta::ListLocationsResponse
8891
command.params['name'] = name unless name.nil?
92+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
8993
command.query['filter'] = filter unless filter.nil?
9094
command.query['pageSize'] = page_size unless page_size.nil?
9195
command.query['pageToken'] = page_token unless page_token.nil?

0 commit comments

Comments
 (0)