Skip to content

Commit c12c5f6

Browse files
feat: Automated regeneration of firebasehosting v1 client (#24548)
Auto-created at 2025-10-05 10:56:20 +0000 using the toys pull request generator.
1 parent 4f93e76 commit c12c5f6

File tree

6 files changed

+29
-4
lines changed

6 files changed

+29
-4
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252089,6 +252089,8 @@
252089252089
"/firebasehosting:v1/ListOperationsResponse/nextPageToken": next_page_token
252090252090
"/firebasehosting:v1/ListOperationsResponse/operations": operations
252091252091
"/firebasehosting:v1/ListOperationsResponse/operations/operation": operation
252092+
"/firebasehosting:v1/ListOperationsResponse/unreachable": unreachable
252093+
"/firebasehosting:v1/ListOperationsResponse/unreachable/unreachable": unreachable
252092252094
"/firebasehosting:v1/LiveMigrationStep": live_migration_step
252093252095
"/firebasehosting:v1/LiveMigrationStep/certVerification": cert_verification
252094252096
"/firebasehosting:v1/LiveMigrationStep/dnsUpdates": dns_updates
@@ -252119,6 +252121,7 @@
252119252121
"/firebasehosting:v1/firebasehosting.operations.list/name": name
252120252122
"/firebasehosting:v1/firebasehosting.operations.list/pageSize": page_size
252121252123
"/firebasehosting:v1/firebasehosting.operations.list/pageToken": page_token
252124+
"/firebasehosting:v1/firebasehosting.operations.list/returnPartialSuccess": return_partial_success
252122252125
"/firebasehosting:v1/firebasehosting.projects.sites.customDomains.operations.cancel": cancel_project_site_custom_domain_operation
252123252126
"/firebasehosting:v1/firebasehosting.projects.sites.customDomains.operations.cancel/name": name
252124252127
"/firebasehosting:v1/firebasehosting.projects.sites.customDomains.operations.delete": delete_project_site_custom_domain_operation

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

3+
### v0.24.0 (2025-10-05)
4+
5+
* Regenerated from discovery document revision 20250929
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.23.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,13 @@ class ListOperationsResponse
329329
# @return [Array<Google::Apis::FirebasehostingV1::Operation>]
330330
attr_accessor :operations
331331

332+
# Unordered list. Unreachable resources. Populated when the request sets `
333+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
334+
# when attempting to list all resources across all supported locations.
335+
# Corresponds to the JSON property `unreachable`
336+
# @return [Array<String>]
337+
attr_accessor :unreachable
338+
332339
def initialize(**args)
333340
update!(**args)
334341
end
@@ -337,6 +344,7 @@ def initialize(**args)
337344
def update!(**args)
338345
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
339346
@operations = args[:operations] if args.key?(:operations)
347+
@unreachable = args[:unreachable] if args.key?(:unreachable)
340348
end
341349
end
342350

generated/google-apis-firebasehosting_v1/lib/google/apis/firebasehosting_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 FirebasehostingV1
1818
# Version of the google-apis-firebasehosting_v1 gem
19-
GEM_VERSION = "0.23.0"
19+
GEM_VERSION = "0.24.0"
2020

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
181181
property :next_page_token, as: 'nextPageToken'
182182
collection :operations, as: 'operations', class: Google::Apis::FirebasehostingV1::Operation, decorator: Google::Apis::FirebasehostingV1::Operation::Representation
183183

184+
collection :unreachable, as: 'unreachable'
184185
end
185186
end
186187

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@ def delete_operation(name, fields: nil, quota_user: nil, options: nil, &block)
137137
# The standard list page size.
138138
# @param [String] page_token
139139
# The standard list page token.
140+
# @param [Boolean] return_partial_success
141+
# When set to `true`, operations that are reachable are returned as normal, and
142+
# those that are unreachable are returned in the [ListOperationsResponse.
143+
# unreachable] field. This can only be `true` when reading across collections e.
144+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
145+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
146+
# explicitly documented otherwise in service or product specific documentation.
140147
# @param [String] fields
141148
# Selector specifying which fields to include in a partial response.
142149
# @param [String] quota_user
@@ -154,14 +161,15 @@ def delete_operation(name, fields: nil, quota_user: nil, options: nil, &block)
154161
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
155162
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
156163
# @raise [Google::Apis::AuthorizationError] Authorization is required
157-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
164+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
158165
command = make_simple_command(:get, 'v1/{+name}', options)
159166
command.response_representation = Google::Apis::FirebasehostingV1::ListOperationsResponse::Representation
160167
command.response_class = Google::Apis::FirebasehostingV1::ListOperationsResponse
161168
command.params['name'] = name unless name.nil?
162169
command.query['filter'] = filter unless filter.nil?
163170
command.query['pageSize'] = page_size unless page_size.nil?
164171
command.query['pageToken'] = page_token unless page_token.nil?
172+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
165173
command.query['fields'] = fields unless fields.nil?
166174
command.query['quotaUser'] = quota_user unless quota_user.nil?
167175
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)