google-apis-firebasedataconnect_v1 0.2.0 → 0.4.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9d59612dc972f20479ac6a3361c6aa04a49986b685942f002e049decd1965eb
|
4
|
+
data.tar.gz: 0eb7550991bfc2347e56e08abe24e6b0b7cbf43d9b3bbcfda722c77a78d8b0ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 683cf724eb88e02f7a01e1c6aa7fe024c1578a10f894a8dbe838c4bbf016eb8f0ab311c13b16b71dc7792ab44ef1ce7f61d22e92483b2e55300e7ccbf971ae25
|
7
|
+
data.tar.gz: 29b3e1929f0c7e86e659a8cb104aee910e3e11d1b1395540aebd9855e79a6f9a4e0daa176aa521d4b6825d6c8336e49cadece9d5f22b7a159b23910cc5121b26
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-firebasedataconnect_v1
|
2
2
|
|
3
|
+
### v0.4.0 (2025-07-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250706
|
6
|
+
|
7
|
+
### v0.3.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250604
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.2.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -358,19 +358,44 @@ module Google
|
|
358
358
|
class GraphqlErrorExtensions
|
359
359
|
include Google::Apis::Core::Hashable
|
360
360
|
|
361
|
+
# Maps to canonical gRPC codes. If not specified, it represents `Code.INTERNAL`.
|
362
|
+
# Corresponds to the JSON property `code`
|
363
|
+
# @return [String]
|
364
|
+
attr_accessor :code
|
365
|
+
|
366
|
+
# More detailed error message to assist debugging. It contains application
|
367
|
+
# business logic that are inappropriate to leak publicly. In the emulator, Data
|
368
|
+
# Connect API always includes it to assist local development and debugging. In
|
369
|
+
# the backend, ConnectorService always hides it. GraphqlService without
|
370
|
+
# impersonation always include it. GraphqlService with impersonation includes it
|
371
|
+
# only if explicitly opted-in with `include_debug_details` in `
|
372
|
+
# GraphqlRequestExtensions`.
|
373
|
+
# Corresponds to the JSON property `debugDetails`
|
374
|
+
# @return [String]
|
375
|
+
attr_accessor :debug_details
|
376
|
+
|
361
377
|
# The source file name where the error occurred. Included only for `UpdateSchema`
|
362
378
|
# and `UpdateConnector`, it corresponds to `File.path` of the provided `Source`.
|
363
379
|
# Corresponds to the JSON property `file`
|
364
380
|
# @return [String]
|
365
381
|
attr_accessor :file
|
366
382
|
|
383
|
+
# Distinguish which schema or connector the error originates from. It should be
|
384
|
+
# set on errors from control plane APIs (e.g. `UpdateSchema`, `UpdateConnector`).
|
385
|
+
# Corresponds to the JSON property `resource`
|
386
|
+
# @return [String]
|
387
|
+
attr_accessor :resource
|
388
|
+
|
367
389
|
def initialize(**args)
|
368
390
|
update!(**args)
|
369
391
|
end
|
370
392
|
|
371
393
|
# Update properties of this object
|
372
394
|
def update!(**args)
|
395
|
+
@code = args[:code] if args.key?(:code)
|
396
|
+
@debug_details = args[:debug_details] if args.key?(:debug_details)
|
373
397
|
@file = args[:file] if args.key?(:file)
|
398
|
+
@resource = args[:resource] if args.key?(:resource)
|
374
399
|
end
|
375
400
|
end
|
376
401
|
|
@@ -481,6 +506,12 @@ module Google
|
|
481
506
|
# @return [Hash<String,Object>]
|
482
507
|
attr_accessor :auth_claims
|
483
508
|
|
509
|
+
# Optional. If set, include debug details in GraphQL error extensions.
|
510
|
+
# Corresponds to the JSON property `includeDebugDetails`
|
511
|
+
# @return [Boolean]
|
512
|
+
attr_accessor :include_debug_details
|
513
|
+
alias_method :include_debug_details?, :include_debug_details
|
514
|
+
|
484
515
|
# Evaluate the auth policy as an unauthenticated request. Can only be set to
|
485
516
|
# true.
|
486
517
|
# Corresponds to the JSON property `unauthenticated`
|
@@ -495,6 +526,7 @@ module Google
|
|
495
526
|
# Update properties of this object
|
496
527
|
def update!(**args)
|
497
528
|
@auth_claims = args[:auth_claims] if args.key?(:auth_claims)
|
529
|
+
@include_debug_details = args[:include_debug_details] if args.key?(:include_debug_details)
|
498
530
|
@unauthenticated = args[:unauthenticated] if args.key?(:unauthenticated)
|
499
531
|
end
|
500
532
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebasedataconnectV1
|
18
18
|
# Version of the google-apis-firebasedataconnect_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250706"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -303,7 +303,10 @@ module Google
|
|
303
303
|
class GraphqlErrorExtensions
|
304
304
|
# @private
|
305
305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
306
|
+
property :code, as: 'code'
|
307
|
+
property :debug_details, as: 'debugDetails'
|
306
308
|
property :file, as: 'file'
|
309
|
+
property :resource, as: 'resource'
|
307
310
|
end
|
308
311
|
end
|
309
312
|
|
@@ -339,6 +342,7 @@ module Google
|
|
339
342
|
# @private
|
340
343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
341
344
|
hash :auth_claims, as: 'authClaims'
|
345
|
+
property :include_debug_details, as: 'includeDebugDetails'
|
342
346
|
property :unauthenticated, as: 'unauthenticated'
|
343
347
|
end
|
344
348
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebasedataconnect_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasedataconnect_v1/v0.4.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasedataconnect_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Firebase Data Connect API V1
|
79
79
|
test_files: []
|