google-apis-firebasedataconnect_v1 0.3.0 → 0.5.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: d989ac24341f309a209346328dd0734032227ac491e1499c91557c9b745ab304
|
4
|
+
data.tar.gz: c24984085e77f5830f50fa0645743273187c7b6c8239ba0f1e2a392fe651c656
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 462ce6351a72bc5b2d6942061984d5a2003786f975836176e330e45395ad19049c42c9e27864148da5ad9dc83b93456e4d0bbaff39f16b73955dce8f8a765d33
|
7
|
+
data.tar.gz: c303b0ef42ceba87c729148ecc9b8126f73b78c93bfe3e4e154731269359bc59e2992a71eb47df60f9c1915b85fb4e01d72ee84457a7b1231fd1c33d7be73291
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firebasedataconnect_v1
|
2
2
|
|
3
|
+
### v0.5.0 (2025-08-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250803
|
6
|
+
|
7
|
+
### v0.4.0 (2025-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250706
|
10
|
+
|
3
11
|
### v0.3.0 (2025-06-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250604
|
@@ -363,9 +363,13 @@ module Google
|
|
363
363
|
# @return [String]
|
364
364
|
attr_accessor :code
|
365
365
|
|
366
|
-
# More detailed error message to assist debugging.
|
367
|
-
#
|
368
|
-
#
|
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`.
|
369
373
|
# Corresponds to the JSON property `debugDetails`
|
370
374
|
# @return [String]
|
371
375
|
attr_accessor :debug_details
|
@@ -502,6 +506,12 @@ module Google
|
|
502
506
|
# @return [Hash<String,Object>]
|
503
507
|
attr_accessor :auth_claims
|
504
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
|
+
|
505
515
|
# Evaluate the auth policy as an unauthenticated request. Can only be set to
|
506
516
|
# true.
|
507
517
|
# Corresponds to the JSON property `unauthenticated`
|
@@ -516,6 +526,7 @@ module Google
|
|
516
526
|
# Update properties of this object
|
517
527
|
def update!(**args)
|
518
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)
|
519
530
|
@unauthenticated = args[:unauthenticated] if args.key?(:unauthenticated)
|
520
531
|
end
|
521
532
|
end
|
@@ -860,6 +871,17 @@ module Google
|
|
860
871
|
# @return [String]
|
861
872
|
attr_accessor :database
|
862
873
|
|
874
|
+
# Output only. Ephemeral is true if this data connect service is served from in-
|
875
|
+
# memory emulation of Postgres. Data Connect service will transfer the data on a
|
876
|
+
# best-effort basis to the Cloud SQL instance once it's provisioned and linked.
|
877
|
+
# WARNING: When `ephemeral=true`, mutations to the database are not guaranteed
|
878
|
+
# to be durably persisted, even if an OK status code is returned. All or parts
|
879
|
+
# of the data may be lost or reverted to earlier versions.
|
880
|
+
# Corresponds to the JSON property `ephemeral`
|
881
|
+
# @return [Boolean]
|
882
|
+
attr_accessor :ephemeral
|
883
|
+
alias_method :ephemeral?, :ephemeral
|
884
|
+
|
863
885
|
# Optional. Configure how to perform Postgresql schema migration.
|
864
886
|
# Corresponds to the JSON property `schemaMigration`
|
865
887
|
# @return [String]
|
@@ -885,6 +907,7 @@ module Google
|
|
885
907
|
def update!(**args)
|
886
908
|
@cloud_sql = args[:cloud_sql] if args.key?(:cloud_sql)
|
887
909
|
@database = args[:database] if args.key?(:database)
|
910
|
+
@ephemeral = args[:ephemeral] if args.key?(:ephemeral)
|
888
911
|
@schema_migration = args[:schema_migration] if args.key?(:schema_migration)
|
889
912
|
@schema_validation = args[:schema_validation] if args.key?(:schema_validation)
|
890
913
|
@unlinked = args[:unlinked] if args.key?(:unlinked)
|
@@ -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.5.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 = "20250803"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -342,6 +342,7 @@ module Google
|
|
342
342
|
# @private
|
343
343
|
class Representation < Google::Apis::Core::JsonRepresentation
|
344
344
|
hash :auth_claims, as: 'authClaims'
|
345
|
+
property :include_debug_details, as: 'includeDebugDetails'
|
345
346
|
property :unauthenticated, as: 'unauthenticated'
|
346
347
|
end
|
347
348
|
end
|
@@ -436,6 +437,7 @@ module Google
|
|
436
437
|
property :cloud_sql, as: 'cloudSql', class: Google::Apis::FirebasedataconnectV1::CloudSqlInstance, decorator: Google::Apis::FirebasedataconnectV1::CloudSqlInstance::Representation
|
437
438
|
|
438
439
|
property :database, as: 'database'
|
440
|
+
property :ephemeral, as: 'ephemeral'
|
439
441
|
property :schema_migration, as: 'schemaMigration'
|
440
442
|
property :schema_validation, as: 'schemaValidation'
|
441
443
|
property :unlinked, as: 'unlinked'
|
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.5.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.5.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:
|