google-apis-firebasedataconnect_v1beta 0.15.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/firebasedataconnect_v1beta/classes.rb +34 -2
- data/lib/google/apis/firebasedataconnect_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/firebasedataconnect_v1beta/representations.rb +16 -0
- data/lib/google/apis/firebasedataconnect_v1beta/service.rb +6 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fa9d7e5639828ac388336e6ca92ee9132e41638e7a4a5cbd3e57083c3f3ca6b
|
|
4
|
+
data.tar.gz: 22cddef41bfebdbdebce40243fa4949a159b7393fc5e9128a3dada59cb81a1e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f10d8de3728582c54f45c596b7076c4fe0283a9c339d73bf3d0f6ffa60da623b7776132a044ff85fdc8f8e45c8531a86979386ee29493ca6eaba1fe4247085b
|
|
7
|
+
data.tar.gz: ccef61d38c3be409f065a62e2fc52de2c3fba6126ae602c021e2f1a82d64394adb2779f0c3f80c0878f9214952e6c895e3d0ef98975ce1a0ef5763a9af2cc082
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
652
|
-
# when attempting to list all resources across all supported
|
|
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.
|
|
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 = "
|
|
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
|
|
251
|
-
# unreachable
|
|
252
|
-
#
|
|
253
|
-
# by default
|
|
254
|
-
# explicitly documented otherwise in service or product specific
|
|
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
|
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.
|
|
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.
|
|
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:
|