Skip to content

Commit 49d97c1

Browse files
feat: Automated regeneration of firebasehosting v1beta1 client (#24539)
Auto-created at 2025-10-05 10:43:03 +0000 using the toys pull request generator.
1 parent aaca528 commit 49d97c1

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
@@ -251866,6 +251866,8 @@
251866251866
"/firebasehosting:v1beta1/ListOperationsResponse/nextPageToken": next_page_token
251867251867
"/firebasehosting:v1beta1/ListOperationsResponse/operations": operations
251868251868
"/firebasehosting:v1beta1/ListOperationsResponse/operations/operation": operation
251869+
"/firebasehosting:v1beta1/ListOperationsResponse/unreachable": unreachable
251870+
"/firebasehosting:v1beta1/ListOperationsResponse/unreachable/unreachable": unreachable
251869251871
"/firebasehosting:v1beta1/ListReleasesResponse": list_releases_response
251870251872
"/firebasehosting:v1beta1/ListReleasesResponse/nextPageToken": next_page_token
251871251873
"/firebasehosting:v1beta1/ListReleasesResponse/releases": releases
@@ -252031,6 +252033,7 @@
252031252033
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.operations.list/name": name
252032252034
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.operations.list/pageSize": page_size
252033252035
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.operations.list/pageToken": page_token
252036+
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.operations.list/returnPartialSuccess": return_partial_success
252034252037
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.patch": patch_project_site_custom_domain
252035252038
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.patch/allowMissing": allow_missing
252036252039
"/firebasehosting:v1beta1/firebasehosting.projects.sites.customDomains.patch/name": name

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

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

510
* Regenerated using generator version 0.17.0

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,6 +1031,13 @@ class ListOperationsResponse
10311031
# @return [Array<Google::Apis::FirebasehostingV1beta1::Operation>]
10321032
attr_accessor :operations
10331033

1034+
# Unordered list. Unreachable resources. Populated when the request sets `
1035+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
1036+
# when attempting to list all resources across all supported locations.
1037+
# Corresponds to the JSON property `unreachable`
1038+
# @return [Array<String>]
1039+
attr_accessor :unreachable
1040+
10341041
def initialize(**args)
10351042
update!(**args)
10361043
end
@@ -1039,6 +1046,7 @@ def initialize(**args)
10391046
def update!(**args)
10401047
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
10411048
@operations = args[:operations] if args.key?(:operations)
1049+
@unreachable = args[:unreachable] if args.key?(:unreachable)
10421050
end
10431051
end
10441052

generated/google-apis-firebasehosting_v1beta1/lib/google/apis/firebasehosting_v1beta1/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 FirebasehostingV1beta1
1818
# Version of the google-apis-firebasehosting_v1beta1 gem
19-
GEM_VERSION = "0.30.0"
19+
GEM_VERSION = "0.31.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 = "20240319"
25+
REVISION = "20250929"
2626
end
2727
end
2828
end

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
542542
property :next_page_token, as: 'nextPageToken'
543543
collection :operations, as: 'operations', class: Google::Apis::FirebasehostingV1beta1::Operation, decorator: Google::Apis::FirebasehostingV1beta1::Operation::Representation
544544

545+
collection :unreachable, as: 'unreachable'
545546
end
546547
end
547548

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,13 @@ def get_project_site_custom_domain_operation(name, fields: nil, quota_user: nil,
929929
# The standard list page size.
930930
# @param [String] page_token
931931
# The standard list page token.
932+
# @param [Boolean] return_partial_success
933+
# When set to `true`, operations that are reachable are returned as normal, and
934+
# those that are unreachable are returned in the [ListOperationsResponse.
935+
# unreachable] field. This can only be `true` when reading across collections e.
936+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
937+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
938+
# explicitly documented otherwise in service or product specific documentation.
932939
# @param [String] fields
933940
# Selector specifying which fields to include in a partial response.
934941
# @param [String] quota_user
@@ -946,14 +953,15 @@ def get_project_site_custom_domain_operation(name, fields: nil, quota_user: nil,
946953
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
947954
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
948955
# @raise [Google::Apis::AuthorizationError] Authorization is required
949-
def list_project_site_custom_domain_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
956+
def list_project_site_custom_domain_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
950957
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
951958
command.response_representation = Google::Apis::FirebasehostingV1beta1::ListOperationsResponse::Representation
952959
command.response_class = Google::Apis::FirebasehostingV1beta1::ListOperationsResponse
953960
command.params['name'] = name unless name.nil?
954961
command.query['filter'] = filter unless filter.nil?
955962
command.query['pageSize'] = page_size unless page_size.nil?
956963
command.query['pageToken'] = page_token unless page_token.nil?
964+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
957965
command.query['fields'] = fields unless fields.nil?
958966
command.query['quotaUser'] = quota_user unless quota_user.nil?
959967
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)