Skip to content

Commit 5e2023b

Browse files
feat: Automated regeneration of firebasedataconnect v1beta client (#25389)
Auto-created at 2026-01-18 10:05:28 +0000 using the toys pull request generator.
1 parent 95deb46 commit 5e2023b

File tree

6 files changed

+66
-9
lines changed

6 files changed

+66
-9
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262809,6 +262809,7 @@
262809262809
"/firebasedataconnect:v1beta/Connector/uid": uid
262810262810
"/firebasedataconnect:v1beta/Connector/updateTime": update_time
262811262811
"/firebasedataconnect:v1beta/Datasource": datasource
262812+
"/firebasedataconnect:v1beta/Datasource/httpGraphql": http_graphql
262812262813
"/firebasedataconnect:v1beta/Datasource/postgresql": postgresql
262813262814
"/firebasedataconnect:v1beta/Empty": empty
262814262815
"/firebasedataconnect:v1beta/ExecuteMutationRequest": execute_mutation_request
@@ -262860,6 +262861,9 @@
262860262861
"/firebasedataconnect:v1beta/GraphqlResponse/data/datum": datum
262861262862
"/firebasedataconnect:v1beta/GraphqlResponse/errors": errors
262862262863
"/firebasedataconnect:v1beta/GraphqlResponse/errors/error": error
262864+
"/firebasedataconnect:v1beta/HttpGraphql": http_graphql
262865+
"/firebasedataconnect:v1beta/HttpGraphql/timeout": timeout
262866+
"/firebasedataconnect:v1beta/HttpGraphql/uri": uri
262863262867
"/firebasedataconnect:v1beta/ImpersonateRequest": impersonate_request
262864262868
"/firebasedataconnect:v1beta/ImpersonateRequest/extensions": extensions
262865262869
"/firebasedataconnect:v1beta/ImpersonateRequest/operationName": operation_name

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

3+
### v0.16.0 (2026-01-18)
4+
5+
* Regenerated from discovery document revision 20260111
6+
37
### v0.15.0 (2025-11-02)
48

59
* Regenerated from discovery document revision 20251026

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

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ def update!(**args)
139139
class Datasource
140140
include Google::Apis::Core::Hashable
141141

142+
# Settings for HTTP GraphQL server webhook.
143+
# Corresponds to the JSON property `httpGraphql`
144+
# @return [Google::Apis::FirebasedataconnectV1beta::HttpGraphql]
145+
attr_accessor :http_graphql
146+
142147
# Settings for PostgreSQL data source.
143148
# Corresponds to the JSON property `postgresql`
144149
# @return [Google::Apis::FirebasedataconnectV1beta::PostgreSql]
@@ -150,6 +155,7 @@ def initialize(**args)
150155

151156
# Update properties of this object
152157
def update!(**args)
158+
@http_graphql = args[:http_graphql] if args.key?(:http_graphql)
153159
@postgresql = args[:postgresql] if args.key?(:postgresql)
154160
end
155161
end
@@ -503,6 +509,31 @@ def update!(**args)
503509
end
504510
end
505511

512+
# Settings for HTTP GraphQL server webhook.
513+
class HttpGraphql
514+
include Google::Apis::Core::Hashable
515+
516+
# Optional. Timeout duration for the HTTP request.
517+
# Corresponds to the JSON property `timeout`
518+
# @return [String]
519+
attr_accessor :timeout
520+
521+
# Required. The endpoint of the HTTP GraphQL server.
522+
# Corresponds to the JSON property `uri`
523+
# @return [String]
524+
attr_accessor :uri
525+
526+
def initialize(**args)
527+
update!(**args)
528+
end
529+
530+
# Update properties of this object
531+
def update!(**args)
532+
@timeout = args[:timeout] if args.key?(:timeout)
533+
@uri = args[:uri] if args.key?(:uri)
534+
end
535+
end
536+
506537
# The Impersonate request to Firebase Data Connect.
507538
class ImpersonateRequest
508539
include Google::Apis::Core::Hashable
@@ -648,8 +679,9 @@ class ListOperationsResponse
648679
attr_accessor :operations
649680

650681
# Unordered list. Unreachable resources. Populated when the request sets `
651-
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
652-
# when attempting to list all resources across all supported locations.
682+
# ListOperationsRequest.return_partial_success` and reads across collections.
683+
# For example, when attempting to list all resources across all supported
684+
# locations.
653685
# Corresponds to the JSON property `unreachable`
654686
# @return [Array<String>]
655687
attr_accessor :unreachable

generated/google-apis-firebasedataconnect_v1beta/lib/google/apis/firebasedataconnect_v1beta/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 FirebasedataconnectV1beta
1818
# Version of the google-apis-firebasedataconnect_v1beta gem
19-
GEM_VERSION = "0.15.0"
19+
GEM_VERSION = "0.16.0"
2020

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

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

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
112112
include Google::Apis::Core::JsonObjectSupport
113113
end
114114

115+
class HttpGraphql
116+
class Representation < Google::Apis::Core::JsonRepresentation; end
117+
118+
include Google::Apis::Core::JsonObjectSupport
119+
end
120+
115121
class ImpersonateRequest
116122
class Representation < Google::Apis::Core::JsonRepresentation; end
117123

@@ -247,6 +253,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
247253
class Datasource
248254
# @private
249255
class Representation < Google::Apis::Core::JsonRepresentation
256+
property :http_graphql, as: 'httpGraphql', class: Google::Apis::FirebasedataconnectV1beta::HttpGraphql, decorator: Google::Apis::FirebasedataconnectV1beta::HttpGraphql::Representation
257+
250258
property :postgresql, as: 'postgresql', class: Google::Apis::FirebasedataconnectV1beta::PostgreSql, decorator: Google::Apis::FirebasedataconnectV1beta::PostgreSql::Representation
251259

252260
end
@@ -352,6 +360,14 @@ class Representation < Google::Apis::Core::JsonRepresentation
352360
end
353361
end
354362

363+
class HttpGraphql
364+
# @private
365+
class Representation < Google::Apis::Core::JsonRepresentation
366+
property :timeout, as: 'timeout'
367+
property :uri, as: 'uri'
368+
end
369+
end
370+
355371
class ImpersonateRequest
356372
# @private
357373
class Representation < Google::Apis::Core::JsonRepresentation

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,12 @@ def get_project_location_operation(name, fields: nil, quota_user: nil, options:
247247
# The standard list page token.
248248
# @param [Boolean] return_partial_success
249249
# When set to `true`, operations that are reachable are returned as normal, and
250-
# those that are unreachable are returned in the [ListOperationsResponse.
251-
# unreachable] field. This can only be `true` when reading across collections e.
252-
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
253-
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
254-
# explicitly documented otherwise in service or product specific documentation.
250+
# those that are unreachable are returned in the ListOperationsResponse.
251+
# unreachable field. This can only be `true` when reading across collections.
252+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
253+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
254+
# if set unless explicitly documented otherwise in service or product specific
255+
# documentation.
255256
# @param [String] fields
256257
# Selector specifying which fields to include in a partial response.
257258
# @param [String] quota_user

0 commit comments

Comments
 (0)