Skip to content

Commit d64cef2

Browse files
feat: Automated regeneration of secretmanager v1 client (googleapis#22315)
Auto-created at 2025-03-30 10:39:24 +0000 using the toys pull request generator.
1 parent 9674825 commit d64cef2

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316694,6 +316694,7 @@
316694316694
"/secretmanager:v1/secretmanager.projects.locations.get": get_project_location
316695316695
"/secretmanager:v1/secretmanager.projects.locations.get/name": name
316696316696
"/secretmanager:v1/secretmanager.projects.locations.list": list_project_locations
316697+
"/secretmanager:v1/secretmanager.projects.locations.list/extraLocationTypes": extra_location_types
316697316698
"/secretmanager:v1/secretmanager.projects.locations.list/filter": filter
316698316699
"/secretmanager:v1/secretmanager.projects.locations.list/name": name
316699316700
"/secretmanager:v1/secretmanager.projects.locations.list/pageSize": page_size

generated/google-apis-secretmanager_v1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-secretmanager_v1
22

3+
### v0.45.0 (2025-03-30)
4+
5+
* Regenerated from discovery document revision 20250324
6+
* Regenerated using generator version 0.16.0
7+
38
### v0.44.0 (2024-11-24)
49

510
* Regenerated from discovery document revision 20241114

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module SecretmanagerV1
1818
# Version of the google-apis-secretmanager_v1 gem
19-
GEM_VERSION = "0.44.0"
19+
GEM_VERSION = "0.45.0"
2020

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

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

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
8585
# Lists information about the supported locations for this service.
8686
# @param [String] name
8787
# The resource that owns the locations collection, if applicable.
88+
# @param [Array<String>, String] extra_location_types
89+
# Optional. A list of extra location types that should be used as conditions for
90+
# controlling the visibility of the locations.
8891
# @param [String] filter
8992
# A filter to narrow down results to a preferred subset. The filtering language
9093
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -112,11 +115,12 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
112115
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
113116
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
114117
# @raise [Google::Apis::AuthorizationError] Authorization is required
115-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
118+
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)
116119
command = make_simple_command(:get, 'v1/{+name}/locations', options)
117120
command.response_representation = Google::Apis::SecretmanagerV1::ListLocationsResponse::Representation
118121
command.response_class = Google::Apis::SecretmanagerV1::ListLocationsResponse
119122
command.params['name'] = name unless name.nil?
123+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
120124
command.query['filter'] = filter unless filter.nil?
121125
command.query['pageSize'] = page_size unless page_size.nil?
122126
command.query['pageToken'] = page_token unless page_token.nil?

0 commit comments

Comments
 (0)