Skip to content

Commit 57b94d3

Browse files
feat: Automated regeneration of cloudtasks v2beta2 client
1 parent 6d38a21 commit 57b94d3

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

api_names_out.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -79389,6 +79389,7 @@
7938979389
"/cloudtasks:v2beta2/cloudtasks.projects.locations.getCmekConfig": get_project_location_cmek_config
7939079390
"/cloudtasks:v2beta2/cloudtasks.projects.locations.getCmekConfig/name": name
7939179391
"/cloudtasks:v2beta2/cloudtasks.projects.locations.list": list_project_locations
79392+
"/cloudtasks:v2beta2/cloudtasks.projects.locations.list/extraLocationTypes": extra_location_types
7939279393
"/cloudtasks:v2beta2/cloudtasks.projects.locations.list/filter": filter
7939379394
"/cloudtasks:v2beta2/cloudtasks.projects.locations.list/name": name
7939479395
"/cloudtasks:v2beta2/cloudtasks.projects.locations.list/pageSize": page_size

generated/google-apis-cloudtasks_v2beta2/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-cloudtasks_v2beta2
22

3+
### v0.47.0 (2025-04-20)
4+
5+
* Regenerated from discovery document revision 20250411
6+
* Regenerated using generator version 0.16.0
7+
38
### v0.46.0 (2024-05-19)
49

510
* Regenerated using generator version 0.15.0

generated/google-apis-cloudtasks_v2beta2/lib/google/apis/cloudtasks_v2beta2/gem_version.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module CloudtasksV2beta2
1818
# Version of the google-apis-cloudtasks_v2beta2 gem
19-
GEM_VERSION = "0.46.0"
19+
GEM_VERSION = "0.47.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.15.0"
22+
GENERATOR_VERSION = "0.16.0"
2323

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

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ def get_project_location_cmek_config(name, fields: nil, quota_user: nil, options
154154
# Lists information about the supported locations for this service.
155155
# @param [String] name
156156
# The resource that owns the locations collection, if applicable.
157+
# @param [Array<String>, String] extra_location_types
158+
# Optional. A list of extra location types that should be used as conditions for
159+
# controlling the visibility of the locations.
157160
# @param [String] filter
158161
# A filter to narrow down results to a preferred subset. The filtering language
159162
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -181,11 +184,12 @@ def get_project_location_cmek_config(name, fields: nil, quota_user: nil, options
181184
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
182185
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
183186
# @raise [Google::Apis::AuthorizationError] Authorization is required
184-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
187+
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)
185188
command = make_simple_command(:get, 'v2beta2/{+name}/locations', options)
186189
command.response_representation = Google::Apis::CloudtasksV2beta2::ListLocationsResponse::Representation
187190
command.response_class = Google::Apis::CloudtasksV2beta2::ListLocationsResponse
188191
command.params['name'] = name unless name.nil?
192+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
189193
command.query['filter'] = filter unless filter.nil?
190194
command.query['pageSize'] = page_size unless page_size.nil?
191195
command.query['pageToken'] = page_token unless page_token.nil?

0 commit comments

Comments
 (0)