google-apis-firebasedataconnect_v1beta 0.14.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2483b49ded1a889326c29e9b5070d59add1eddf54d5cac5de7bd1f5742d73d2
4
- data.tar.gz: 1ccbf9d2ab4bc89b3286de6b5716a5a6737ae9724dd1d36db57d1719cb960af9
3
+ metadata.gz: 3fa9d7e5639828ac388336e6ca92ee9132e41638e7a4a5cbd3e57083c3f3ca6b
4
+ data.tar.gz: 22cddef41bfebdbdebce40243fa4949a159b7393fc5e9128a3dada59cb81a1e2
5
5
  SHA512:
6
- metadata.gz: 77e5daa418146f348e38e4dc208fed3a94246dad5ccb6a87ea098715f4e6586b10936f8141b88704422df149ca74421f3ca95a651f7617d3834758407d684dd3
7
- data.tar.gz: a4142e3f9ae2091a5494e052780e08a2102716106da8a8a39c09f6fd113b54c8e3703ee83edcebf014aef809001189c5bd1cb62b9b14d2929ad62b7182f206bc
6
+ metadata.gz: 1f10d8de3728582c54f45c596b7076c4fe0283a9c339d73bf3d0f6ffa60da623b7776132a044ff85fdc8f8e45c8531a86979386ee29493ca6eaba1fe4247085b
7
+ data.tar.gz: ccef61d38c3be409f065a62e2fc52de2c3fba6126ae602c021e2f1a82d64394adb2779f0c3f80c0878f9214952e6c895e3d0ef98975ce1a0ef5763a9af2cc082
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firebasedataconnect_v1beta
2
2
 
3
+ ### v0.16.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260111
6
+
7
+ ### v0.15.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251026
10
+
3
11
  ### v0.14.0 (2025-10-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20251021
@@ -139,6 +139,11 @@ module Google
139
139
  class Datasource
140
140
  include Google::Apis::Core::Hashable
141
141
 
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
+
142
147
  # Settings for PostgreSQL data source.
143
148
  # Corresponds to the JSON property `postgresql`
144
149
  # @return [Google::Apis::FirebasedataconnectV1beta::PostgreSql]
@@ -150,6 +155,7 @@ module Google
150
155
 
151
156
  # Update properties of this object
152
157
  def update!(**args)
158
+ @http_graphql = args[:http_graphql] if args.key?(:http_graphql)
153
159
  @postgresql = args[:postgresql] if args.key?(:postgresql)
154
160
  end
155
161
  end
@@ -503,6 +509,31 @@ module Google
503
509
  end
504
510
  end
505
511
 
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
+
506
537
  # The Impersonate request to Firebase Data Connect.
507
538
  class ImpersonateRequest
508
539
  include Google::Apis::Core::Hashable
@@ -648,8 +679,9 @@ module Google
648
679
  attr_accessor :operations
649
680
 
650
681
  # 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.
653
685
  # Corresponds to the JSON property `unreachable`
654
686
  # @return [Array<String>]
655
687
  attr_accessor :unreachable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasedataconnectV1beta
18
18
  # Version of the google-apis-firebasedataconnect_v1beta gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251021"
25
+ REVISION = "20260111"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class HttpGraphql
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class ImpersonateRequest
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -247,6 +253,8 @@ module Google
247
253
  class Datasource
248
254
  # @private
249
255
  class Representation < Google::Apis::Core::JsonRepresentation
256
+ property :http_graphql, as: 'httpGraphql', class: Google::Apis::FirebasedataconnectV1beta::HttpGraphql, decorator: Google::Apis::FirebasedataconnectV1beta::HttpGraphql::Representation
257
+
250
258
  property :postgresql, as: 'postgresql', class: Google::Apis::FirebasedataconnectV1beta::PostgreSql, decorator: Google::Apis::FirebasedataconnectV1beta::PostgreSql::Representation
251
259
 
252
260
  end
@@ -352,6 +360,14 @@ module Google
352
360
  end
353
361
  end
354
362
 
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
+
355
371
  class ImpersonateRequest
356
372
  # @private
357
373
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -247,11 +247,12 @@ module Google
247
247
  # The standard list page token.
248
248
  # @param [Boolean] return_partial_success
249
249
  # 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.
255
256
  # @param [String] fields
256
257
  # Selector specifying which fields to include in a partial response.
257
258
  # @param [String] quota_user
@@ -1202,8 +1203,7 @@ module Google
1202
1203
  execute_or_queue_command(command, &block)
1203
1204
  end
1204
1205
 
1205
- # Lists Schemas in a given project and location. Note that only `schemas/main`
1206
- # is supported, so this will always return at most one Schema.
1206
+ # Lists Schemas in a given project and location.
1207
1207
  # @param [String] parent
1208
1208
  # Required. Value of parent.
1209
1209
  # @param [String] filter
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebasedataconnect_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1beta/v0.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1beta/v0.16.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: