google-apis-firebasedataconnect_v1beta 0.16.0 → 0.18.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 +8 -0
- data/lib/google/apis/firebasedataconnect_v1beta/classes.rb +133 -1
- data/lib/google/apis/firebasedataconnect_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/firebasedataconnect_v1beta/representations.rb +53 -0
- data/lib/google/apis/firebasedataconnect_v1beta/service.rb +5 -1
- 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: e76a240ab206f4e2f6cf73a2154dfca993889e7fedea6532b305dbeb7e458210
|
|
4
|
+
data.tar.gz: 8cfda805af7fcca7fdcf06c9a37104ee8c47b7b82e955e08f87fc9fa334b4ee3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f89ce098bac2710ac5dacd1b45e0ec27120287840eaff4df70177a18284b2d6f53107212ccd0ae3f1468c09a146d0301df4bdea75251df172dccb6211a3dc64
|
|
7
|
+
data.tar.gz: 4fd19f74135990abb7da7741fa38c0dcef25709db63c7b5baf10f37f4304320dca874faace4256198f144f754676b233016afbf6b51991f32c8bc71b6399f0df
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-firebasedataconnect_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.18.0 (2026-03-08)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260301
|
|
6
|
+
|
|
7
|
+
### v0.17.0 (2026-02-08)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260201
|
|
10
|
+
|
|
3
11
|
### v0.16.0 (2026-01-18)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260111
|
|
@@ -35,6 +35,44 @@ module Google
|
|
|
35
35
|
end
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
+
# Client caching settings of a connector.
|
|
39
|
+
class ClientCache
|
|
40
|
+
include Google::Apis::Core::Hashable
|
|
41
|
+
|
|
42
|
+
# Optional. A field that, if true, means that responses served by this connector
|
|
43
|
+
# will include entityIds in GraphQL response extensions. This helps the client
|
|
44
|
+
# SDK cache responses in an improved way, known as "normalized caching", if
|
|
45
|
+
# caching is enabled on the client. Each entityId is a stable key based on
|
|
46
|
+
# primary key values. Therefore, this field should only be set to true if the
|
|
47
|
+
# primary keys of accessed tables do not contain sensitive information.
|
|
48
|
+
# Corresponds to the JSON property `entityIdIncluded`
|
|
49
|
+
# @return [Boolean]
|
|
50
|
+
attr_accessor :entity_id_included
|
|
51
|
+
alias_method :entity_id_included?, :entity_id_included
|
|
52
|
+
|
|
53
|
+
# Optional. A field that, if true, enables stricter validation on the connector
|
|
54
|
+
# source code to make sure the operation response shapes are suitable for client-
|
|
55
|
+
# side caching. This can include additional errors and warnings. For example,
|
|
56
|
+
# using the same alias for different fields is disallowed, as it may cause
|
|
57
|
+
# conflicts or confusion with normalized caching. (This field is off by default
|
|
58
|
+
# for compatibility, but enabling it is highly recommended to catch common
|
|
59
|
+
# caching pitfalls.)
|
|
60
|
+
# Corresponds to the JSON property `strictValidationEnabled`
|
|
61
|
+
# @return [Boolean]
|
|
62
|
+
attr_accessor :strict_validation_enabled
|
|
63
|
+
alias_method :strict_validation_enabled?, :strict_validation_enabled
|
|
64
|
+
|
|
65
|
+
def initialize(**args)
|
|
66
|
+
update!(**args)
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# Update properties of this object
|
|
70
|
+
def update!(**args)
|
|
71
|
+
@entity_id_included = args[:entity_id_included] if args.key?(:entity_id_included)
|
|
72
|
+
@strict_validation_enabled = args[:strict_validation_enabled] if args.key?(:strict_validation_enabled)
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
38
76
|
# Settings for CloudSQL instance configuration.
|
|
39
77
|
class CloudSqlInstance
|
|
40
78
|
include Google::Apis::Core::Hashable
|
|
@@ -64,6 +102,11 @@ module Google
|
|
|
64
102
|
# @return [Hash<String,String>]
|
|
65
103
|
attr_accessor :annotations
|
|
66
104
|
|
|
105
|
+
# Client caching settings of a connector.
|
|
106
|
+
# Corresponds to the JSON property `clientCache`
|
|
107
|
+
# @return [Google::Apis::FirebasedataconnectV1beta::ClientCache]
|
|
108
|
+
attr_accessor :client_cache
|
|
109
|
+
|
|
67
110
|
# Output only. [Output only] Create time stamp.
|
|
68
111
|
# Corresponds to the JSON property `createTime`
|
|
69
112
|
# @return [String]
|
|
@@ -123,6 +166,7 @@ module Google
|
|
|
123
166
|
# Update properties of this object
|
|
124
167
|
def update!(**args)
|
|
125
168
|
@annotations = args[:annotations] if args.key?(:annotations)
|
|
169
|
+
@client_cache = args[:client_cache] if args.key?(:client_cache)
|
|
126
170
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
127
171
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
128
172
|
@etag = args[:etag] if args.key?(:etag)
|
|
@@ -135,6 +179,46 @@ module Google
|
|
|
135
179
|
end
|
|
136
180
|
end
|
|
137
181
|
|
|
182
|
+
# Data Connect specific properties for a path under response.data.
|
|
183
|
+
class DataConnectProperties
|
|
184
|
+
include Google::Apis::Core::Hashable
|
|
185
|
+
|
|
186
|
+
# A single Entity ID. Set if the path points to a single entity.
|
|
187
|
+
# Corresponds to the JSON property `entityId`
|
|
188
|
+
# @return [String]
|
|
189
|
+
attr_accessor :entity_id
|
|
190
|
+
|
|
191
|
+
# A list of Entity IDs. Set if the path points to an array of entities. An ID is
|
|
192
|
+
# present for each element of the array at the corresponding index.
|
|
193
|
+
# Corresponds to the JSON property `entityIds`
|
|
194
|
+
# @return [Array<String>]
|
|
195
|
+
attr_accessor :entity_ids
|
|
196
|
+
|
|
197
|
+
# The server-suggested duration before data under path is considered stale.
|
|
198
|
+
# Corresponds to the JSON property `maxAge`
|
|
199
|
+
# @return [String]
|
|
200
|
+
attr_accessor :max_age
|
|
201
|
+
|
|
202
|
+
# The path under response.data where the rest of the fields apply. Each element
|
|
203
|
+
# may be a string (field name) or number (array index). The root of response.
|
|
204
|
+
# data is denoted by the empty list `[]`.
|
|
205
|
+
# Corresponds to the JSON property `path`
|
|
206
|
+
# @return [Array<Object>]
|
|
207
|
+
attr_accessor :path
|
|
208
|
+
|
|
209
|
+
def initialize(**args)
|
|
210
|
+
update!(**args)
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
# Update properties of this object
|
|
214
|
+
def update!(**args)
|
|
215
|
+
@entity_id = args[:entity_id] if args.key?(:entity_id)
|
|
216
|
+
@entity_ids = args[:entity_ids] if args.key?(:entity_ids)
|
|
217
|
+
@max_age = args[:max_age] if args.key?(:max_age)
|
|
218
|
+
@path = args[:path] if args.key?(:path)
|
|
219
|
+
end
|
|
220
|
+
end
|
|
221
|
+
|
|
138
222
|
# A data source that backs Firebase Data Connect services.
|
|
139
223
|
class Datasource
|
|
140
224
|
include Google::Apis::Core::Hashable
|
|
@@ -217,6 +301,12 @@ module Google
|
|
|
217
301
|
# @return [Array<Google::Apis::FirebasedataconnectV1beta::GraphqlError>]
|
|
218
302
|
attr_accessor :errors
|
|
219
303
|
|
|
304
|
+
# GraphqlResponseExtensions contains additional information of `GraphqlResponse`
|
|
305
|
+
# or `ExecuteQueryResponse`.
|
|
306
|
+
# Corresponds to the JSON property `extensions`
|
|
307
|
+
# @return [Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions]
|
|
308
|
+
attr_accessor :extensions
|
|
309
|
+
|
|
220
310
|
def initialize(**args)
|
|
221
311
|
update!(**args)
|
|
222
312
|
end
|
|
@@ -225,6 +315,7 @@ module Google
|
|
|
225
315
|
def update!(**args)
|
|
226
316
|
@data = args[:data] if args.key?(:data)
|
|
227
317
|
@errors = args[:errors] if args.key?(:errors)
|
|
318
|
+
@extensions = args[:extensions] if args.key?(:extensions)
|
|
228
319
|
end
|
|
229
320
|
end
|
|
230
321
|
|
|
@@ -269,6 +360,12 @@ module Google
|
|
|
269
360
|
# @return [Array<Google::Apis::FirebasedataconnectV1beta::GraphqlError>]
|
|
270
361
|
attr_accessor :errors
|
|
271
362
|
|
|
363
|
+
# GraphqlResponseExtensions contains additional information of `GraphqlResponse`
|
|
364
|
+
# or `ExecuteQueryResponse`.
|
|
365
|
+
# Corresponds to the JSON property `extensions`
|
|
366
|
+
# @return [Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions]
|
|
367
|
+
attr_accessor :extensions
|
|
368
|
+
|
|
272
369
|
def initialize(**args)
|
|
273
370
|
update!(**args)
|
|
274
371
|
end
|
|
@@ -277,6 +374,7 @@ module Google
|
|
|
277
374
|
def update!(**args)
|
|
278
375
|
@data = args[:data] if args.key?(:data)
|
|
279
376
|
@errors = args[:errors] if args.key?(:errors)
|
|
377
|
+
@extensions = args[:extensions] if args.key?(:extensions)
|
|
280
378
|
end
|
|
281
379
|
end
|
|
282
380
|
|
|
@@ -493,11 +591,17 @@ module Google
|
|
|
493
591
|
|
|
494
592
|
# Errors of this response. If the data entry in the response is not present, the
|
|
495
593
|
# errors entry must be present. It conforms to https://spec.graphql.org/draft/#
|
|
496
|
-
# sec-Errors.
|
|
594
|
+
# sec-Errors .
|
|
497
595
|
# Corresponds to the JSON property `errors`
|
|
498
596
|
# @return [Array<Google::Apis::FirebasedataconnectV1beta::GraphqlError>]
|
|
499
597
|
attr_accessor :errors
|
|
500
598
|
|
|
599
|
+
# GraphqlResponseExtensions contains additional information of `GraphqlResponse`
|
|
600
|
+
# or `ExecuteQueryResponse`.
|
|
601
|
+
# Corresponds to the JSON property `extensions`
|
|
602
|
+
# @return [Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions]
|
|
603
|
+
attr_accessor :extensions
|
|
604
|
+
|
|
501
605
|
def initialize(**args)
|
|
502
606
|
update!(**args)
|
|
503
607
|
end
|
|
@@ -506,6 +610,27 @@ module Google
|
|
|
506
610
|
def update!(**args)
|
|
507
611
|
@data = args[:data] if args.key?(:data)
|
|
508
612
|
@errors = args[:errors] if args.key?(:errors)
|
|
613
|
+
@extensions = args[:extensions] if args.key?(:extensions)
|
|
614
|
+
end
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
# GraphqlResponseExtensions contains additional information of `GraphqlResponse`
|
|
618
|
+
# or `ExecuteQueryResponse`.
|
|
619
|
+
class GraphqlResponseExtensions
|
|
620
|
+
include Google::Apis::Core::Hashable
|
|
621
|
+
|
|
622
|
+
# Data Connect specific GraphQL extension, a list of paths and properties.
|
|
623
|
+
# Corresponds to the JSON property `dataConnect`
|
|
624
|
+
# @return [Array<Google::Apis::FirebasedataconnectV1beta::DataConnectProperties>]
|
|
625
|
+
attr_accessor :data_connect
|
|
626
|
+
|
|
627
|
+
def initialize(**args)
|
|
628
|
+
update!(**args)
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
# Update properties of this object
|
|
632
|
+
def update!(**args)
|
|
633
|
+
@data_connect = args[:data_connect] if args.key?(:data_connect)
|
|
509
634
|
end
|
|
510
635
|
end
|
|
511
636
|
|
|
@@ -968,6 +1093,12 @@ module Google
|
|
|
968
1093
|
attr_accessor :ephemeral
|
|
969
1094
|
alias_method :ephemeral?, :ephemeral
|
|
970
1095
|
|
|
1096
|
+
# Optional. User-configured PostgreSQL schema. Defaults to "public" if not
|
|
1097
|
+
# specified.
|
|
1098
|
+
# Corresponds to the JSON property `schema`
|
|
1099
|
+
# @return [String]
|
|
1100
|
+
attr_accessor :schema
|
|
1101
|
+
|
|
971
1102
|
# Optional. Configure how to perform Postgresql schema migration.
|
|
972
1103
|
# Corresponds to the JSON property `schemaMigration`
|
|
973
1104
|
# @return [String]
|
|
@@ -994,6 +1125,7 @@ module Google
|
|
|
994
1125
|
@cloud_sql = args[:cloud_sql] if args.key?(:cloud_sql)
|
|
995
1126
|
@database = args[:database] if args.key?(:database)
|
|
996
1127
|
@ephemeral = args[:ephemeral] if args.key?(:ephemeral)
|
|
1128
|
+
@schema = args[:schema] if args.key?(:schema)
|
|
997
1129
|
@schema_migration = args[:schema_migration] if args.key?(:schema_migration)
|
|
998
1130
|
@schema_validation = args[:schema_validation] if args.key?(:schema_validation)
|
|
999
1131
|
@unlinked = args[:unlinked] if args.key?(:unlinked)
|
|
@@ -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.18.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 = "20260301"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -28,6 +28,12 @@ module Google
|
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
+
class ClientCache
|
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
|
+
|
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
35
|
+
end
|
|
36
|
+
|
|
31
37
|
class CloudSqlInstance
|
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
39
|
|
|
@@ -40,6 +46,12 @@ module Google
|
|
|
40
46
|
include Google::Apis::Core::JsonObjectSupport
|
|
41
47
|
end
|
|
42
48
|
|
|
49
|
+
class DataConnectProperties
|
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
|
+
|
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
53
|
+
end
|
|
54
|
+
|
|
43
55
|
class Datasource
|
|
44
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
45
57
|
|
|
@@ -112,6 +124,12 @@ module Google
|
|
|
112
124
|
include Google::Apis::Core::JsonObjectSupport
|
|
113
125
|
end
|
|
114
126
|
|
|
127
|
+
class GraphqlResponseExtensions
|
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
|
+
|
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
131
|
+
end
|
|
132
|
+
|
|
115
133
|
class HttpGraphql
|
|
116
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
135
|
|
|
@@ -226,6 +244,14 @@ module Google
|
|
|
226
244
|
end
|
|
227
245
|
end
|
|
228
246
|
|
|
247
|
+
class ClientCache
|
|
248
|
+
# @private
|
|
249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
250
|
+
property :entity_id_included, as: 'entityIdIncluded'
|
|
251
|
+
property :strict_validation_enabled, as: 'strictValidationEnabled'
|
|
252
|
+
end
|
|
253
|
+
end
|
|
254
|
+
|
|
229
255
|
class CloudSqlInstance
|
|
230
256
|
# @private
|
|
231
257
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -237,6 +263,8 @@ module Google
|
|
|
237
263
|
# @private
|
|
238
264
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
239
265
|
hash :annotations, as: 'annotations'
|
|
266
|
+
property :client_cache, as: 'clientCache', class: Google::Apis::FirebasedataconnectV1beta::ClientCache, decorator: Google::Apis::FirebasedataconnectV1beta::ClientCache::Representation
|
|
267
|
+
|
|
240
268
|
property :create_time, as: 'createTime'
|
|
241
269
|
property :display_name, as: 'displayName'
|
|
242
270
|
property :etag, as: 'etag'
|
|
@@ -250,6 +278,16 @@ module Google
|
|
|
250
278
|
end
|
|
251
279
|
end
|
|
252
280
|
|
|
281
|
+
class DataConnectProperties
|
|
282
|
+
# @private
|
|
283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
284
|
+
property :entity_id, as: 'entityId'
|
|
285
|
+
collection :entity_ids, as: 'entityIds'
|
|
286
|
+
property :max_age, as: 'maxAge'
|
|
287
|
+
collection :path, as: 'path'
|
|
288
|
+
end
|
|
289
|
+
end
|
|
290
|
+
|
|
253
291
|
class Datasource
|
|
254
292
|
# @private
|
|
255
293
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -280,6 +318,8 @@ module Google
|
|
|
280
318
|
hash :data, as: 'data'
|
|
281
319
|
collection :errors, as: 'errors', class: Google::Apis::FirebasedataconnectV1beta::GraphqlError, decorator: Google::Apis::FirebasedataconnectV1beta::GraphqlError::Representation
|
|
282
320
|
|
|
321
|
+
property :extensions, as: 'extensions', class: Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions, decorator: Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions::Representation
|
|
322
|
+
|
|
283
323
|
end
|
|
284
324
|
end
|
|
285
325
|
|
|
@@ -297,6 +337,8 @@ module Google
|
|
|
297
337
|
hash :data, as: 'data'
|
|
298
338
|
collection :errors, as: 'errors', class: Google::Apis::FirebasedataconnectV1beta::GraphqlError, decorator: Google::Apis::FirebasedataconnectV1beta::GraphqlError::Representation
|
|
299
339
|
|
|
340
|
+
property :extensions, as: 'extensions', class: Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions, decorator: Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions::Representation
|
|
341
|
+
|
|
300
342
|
end
|
|
301
343
|
end
|
|
302
344
|
|
|
@@ -357,6 +399,16 @@ module Google
|
|
|
357
399
|
hash :data, as: 'data'
|
|
358
400
|
collection :errors, as: 'errors', class: Google::Apis::FirebasedataconnectV1beta::GraphqlError, decorator: Google::Apis::FirebasedataconnectV1beta::GraphqlError::Representation
|
|
359
401
|
|
|
402
|
+
property :extensions, as: 'extensions', class: Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions, decorator: Google::Apis::FirebasedataconnectV1beta::GraphqlResponseExtensions::Representation
|
|
403
|
+
|
|
404
|
+
end
|
|
405
|
+
end
|
|
406
|
+
|
|
407
|
+
class GraphqlResponseExtensions
|
|
408
|
+
# @private
|
|
409
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
410
|
+
collection :data_connect, as: 'dataConnect', class: Google::Apis::FirebasedataconnectV1beta::DataConnectProperties, decorator: Google::Apis::FirebasedataconnectV1beta::DataConnectProperties::Representation
|
|
411
|
+
|
|
360
412
|
end
|
|
361
413
|
end
|
|
362
414
|
|
|
@@ -479,6 +531,7 @@ module Google
|
|
|
479
531
|
|
|
480
532
|
property :database, as: 'database'
|
|
481
533
|
property :ephemeral, as: 'ephemeral'
|
|
534
|
+
property :schema, as: 'schema'
|
|
482
535
|
property :schema_migration, as: 'schemaMigration'
|
|
483
536
|
property :schema_validation, as: 'schemaValidation'
|
|
484
537
|
property :unlinked, as: 'unlinked'
|
|
@@ -84,7 +84,11 @@ module Google
|
|
|
84
84
|
execute_or_queue_command(command, &block)
|
|
85
85
|
end
|
|
86
86
|
|
|
87
|
-
# Lists information about the supported locations for this service.
|
|
87
|
+
# Lists information about the supported locations for this service. This method
|
|
88
|
+
# can be called in two ways: * **List all public locations:** Use the path `GET /
|
|
89
|
+
# v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
|
|
90
|
+
# projects/`project_id`/locations`. This may include public locations as well as
|
|
91
|
+
# private or other locations specifically visible to the project.
|
|
88
92
|
# @param [String] name
|
|
89
93
|
# The resource that owns the locations collection, if applicable.
|
|
90
94
|
# @param [Array<String>, String] extra_location_types
|
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.18.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.18.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:
|