google-apis-firebasedataconnect_v1 0.14.0 → 0.15.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_v1/classes.rb +27 -27
- data/lib/google/apis/firebasedataconnect_v1/gem_version.rb +2 -2
- data/lib/google/apis/firebasedataconnect_v1/service.rb +19 -20
- data/lib/google/apis/firebasedataconnect_v1.rb +1 -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: 329d1ad125d1125a0192465fb06428d64efc8c2985aca41ff916cd79fc1a6693
|
|
4
|
+
data.tar.gz: bf841fb6574562a13d44cd658a7c248109323f64f5d5158cedd08227d47cbd47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3c242b56023bd1e00550fd3a775f3a12b93a1859d0057336e0a890c4728cf8a499090e4dc1a841576c4738b7d72ebdfeef1dd7e9463cf4ab7acd4c8c69164b5
|
|
7
|
+
data.tar.gz: 89f7c2b0bec9dde54e092e93f5ba3cb1e38afda29646fe39b0d7a0b34d81aa706fa983e6b9121739c0e134de88e7151d02f8a5ae9d5f1de8682cc1a52e3029a3
|
data/CHANGELOG.md
CHANGED
|
@@ -179,7 +179,7 @@ module Google
|
|
|
179
179
|
end
|
|
180
180
|
end
|
|
181
181
|
|
|
182
|
-
#
|
|
182
|
+
# SQL Connect specific properties for a path under response.data.
|
|
183
183
|
class DataConnectProperties
|
|
184
184
|
include Google::Apis::Core::Hashable
|
|
185
185
|
|
|
@@ -219,7 +219,7 @@ module Google
|
|
|
219
219
|
end
|
|
220
220
|
end
|
|
221
221
|
|
|
222
|
-
# A data source that backs Firebase
|
|
222
|
+
# A data source that backs Firebase SQL Connect services.
|
|
223
223
|
class Datasource
|
|
224
224
|
include Google::Apis::Core::Hashable
|
|
225
225
|
|
|
@@ -260,7 +260,7 @@ module Google
|
|
|
260
260
|
end
|
|
261
261
|
end
|
|
262
262
|
|
|
263
|
-
# The ExecuteMutation request to Firebase
|
|
263
|
+
# The ExecuteMutation request to Firebase SQL Connect.
|
|
264
264
|
class ExecuteMutationRequest
|
|
265
265
|
include Google::Apis::Core::Hashable
|
|
266
266
|
|
|
@@ -287,7 +287,7 @@ module Google
|
|
|
287
287
|
end
|
|
288
288
|
end
|
|
289
289
|
|
|
290
|
-
# The ExecuteMutation response from Firebase
|
|
290
|
+
# The ExecuteMutation response from Firebase SQL Connect.
|
|
291
291
|
class ExecuteMutationResponse
|
|
292
292
|
include Google::Apis::Core::Hashable
|
|
293
293
|
|
|
@@ -319,7 +319,7 @@ module Google
|
|
|
319
319
|
end
|
|
320
320
|
end
|
|
321
321
|
|
|
322
|
-
# The ExecuteQuery request to Firebase
|
|
322
|
+
# The ExecuteQuery request to Firebase SQL Connect.
|
|
323
323
|
class ExecuteQueryRequest
|
|
324
324
|
include Google::Apis::Core::Hashable
|
|
325
325
|
|
|
@@ -346,7 +346,7 @@ module Google
|
|
|
346
346
|
end
|
|
347
347
|
end
|
|
348
348
|
|
|
349
|
-
# The ExecuteQuery response from Firebase
|
|
349
|
+
# The ExecuteQuery response from Firebase SQL Connect.
|
|
350
350
|
class ExecuteQueryResponse
|
|
351
351
|
include Google::Apis::Core::Hashable
|
|
352
352
|
|
|
@@ -406,7 +406,7 @@ module Google
|
|
|
406
406
|
end
|
|
407
407
|
|
|
408
408
|
# GraphqlError conforms to the GraphQL error spec. https://spec.graphql.org/
|
|
409
|
-
# draft/#sec-Errors Firebase
|
|
409
|
+
# draft/#sec-Errors Firebase SQL Connect API surfaces `GraphqlError` in various
|
|
410
410
|
# APIs: - Upon compile error, `UpdateSchema` and `UpdateConnector` return Code.
|
|
411
411
|
# Invalid_Argument with a list of `GraphqlError` in error details. - Upon query
|
|
412
412
|
# compile error, `ExecuteGraphql`, `ExecuteGraphqlRead` and `IntrospectGraphql`
|
|
@@ -471,7 +471,7 @@ module Google
|
|
|
471
471
|
attr_accessor :code
|
|
472
472
|
|
|
473
473
|
# More detailed error message to assist debugging. It contains application
|
|
474
|
-
# business logic that are inappropriate to leak publicly. In the emulator,
|
|
474
|
+
# business logic that are inappropriate to leak publicly. In the emulator, SQL
|
|
475
475
|
# Connect API always includes it to assist local development and debugging. In
|
|
476
476
|
# the backend, ConnectorService always hides it. GraphqlService without
|
|
477
477
|
# impersonation always include it. GraphqlService with impersonation includes it
|
|
@@ -512,7 +512,7 @@ module Google
|
|
|
512
512
|
end
|
|
513
513
|
end
|
|
514
514
|
|
|
515
|
-
# The GraphQL request to Firebase
|
|
515
|
+
# The GraphQL request to Firebase SQL Connect. It strives to match the GraphQL
|
|
516
516
|
# over HTTP spec. https://github.com/graphql/graphql-over-http/blob/main/spec/
|
|
517
517
|
# GraphQLOverHTTP.md#post
|
|
518
518
|
class GraphqlRequest
|
|
@@ -572,8 +572,8 @@ module Google
|
|
|
572
572
|
end
|
|
573
573
|
end
|
|
574
574
|
|
|
575
|
-
# The GraphQL response from Firebase
|
|
576
|
-
# GraphQL over HTTP spec. Note: Firebase
|
|
575
|
+
# The GraphQL response from Firebase SQL Connect. It strives to match the
|
|
576
|
+
# GraphQL over HTTP spec. Note: Firebase SQL Connect always responds with `
|
|
577
577
|
# Content-Type: application/json`. https://github.com/graphql/graphql-over-http/
|
|
578
578
|
# blob/main/spec/GraphQLOverHTTP.md#body
|
|
579
579
|
class GraphqlResponse
|
|
@@ -619,7 +619,7 @@ module Google
|
|
|
619
619
|
class GraphqlResponseExtensions
|
|
620
620
|
include Google::Apis::Core::Hashable
|
|
621
621
|
|
|
622
|
-
#
|
|
622
|
+
# SQL Connect specific GraphQL extension, a list of paths and properties.
|
|
623
623
|
# Corresponds to the JSON property `dataConnect`
|
|
624
624
|
# @return [Array<Google::Apis::FirebasedataconnectV1::DataConnectProperties>]
|
|
625
625
|
attr_accessor :data_connect
|
|
@@ -659,7 +659,7 @@ module Google
|
|
|
659
659
|
end
|
|
660
660
|
end
|
|
661
661
|
|
|
662
|
-
# The Impersonate request to Firebase
|
|
662
|
+
# The Impersonate request to Firebase SQL Connect.
|
|
663
663
|
class ImpersonateRequest
|
|
664
664
|
include Google::Apis::Core::Hashable
|
|
665
665
|
|
|
@@ -1078,16 +1078,16 @@ module Google
|
|
|
1078
1078
|
# @return [String]
|
|
1079
1079
|
attr_accessor :database
|
|
1080
1080
|
|
|
1081
|
-
# Output only. Ephemeral is true if this
|
|
1081
|
+
# Output only. Ephemeral is true if this SQL Connect service is served from
|
|
1082
1082
|
# temporary in-memory emulation of Postgres. While Cloud SQL is being
|
|
1083
|
-
# provisioned, the
|
|
1084
|
-
# developers get started. Once the Cloud SQL is provisioned,
|
|
1085
|
-
#
|
|
1086
|
-
#
|
|
1087
|
-
#
|
|
1088
|
-
#
|
|
1089
|
-
#
|
|
1090
|
-
#
|
|
1083
|
+
# provisioned, the SQL Connect service provides the ephemeral service to help
|
|
1084
|
+
# developers get started. Once the Cloud SQL is provisioned, SQL Connect service
|
|
1085
|
+
# will transfer its data on a best-effort basis to the Cloud SQL instance.
|
|
1086
|
+
# WARNING: Ephemeral data sources will expire after 24 hour. The data will be
|
|
1087
|
+
# lost if they aren't transferred to the Cloud SQL instance. WARNING: When `
|
|
1088
|
+
# ephemeral=true`, mutations to the database are not guaranteed to be durably
|
|
1089
|
+
# persisted, even if an OK status code is returned. All or parts of the data may
|
|
1090
|
+
# be lost or reverted to earlier versions.
|
|
1091
1091
|
# Corresponds to the JSON property `ephemeral`
|
|
1092
1092
|
# @return [Boolean]
|
|
1093
1093
|
attr_accessor :ephemeral
|
|
@@ -1132,7 +1132,7 @@ module Google
|
|
|
1132
1132
|
end
|
|
1133
1133
|
end
|
|
1134
1134
|
|
|
1135
|
-
# The application schema of a Firebase
|
|
1135
|
+
# The application schema of a Firebase SQL Connect service.
|
|
1136
1136
|
class Schema
|
|
1137
1137
|
include Google::Apis::Core::Hashable
|
|
1138
1138
|
|
|
@@ -1218,7 +1218,7 @@ module Google
|
|
|
1218
1218
|
end
|
|
1219
1219
|
end
|
|
1220
1220
|
|
|
1221
|
-
# A Firebase
|
|
1221
|
+
# A Firebase SQL Connect service.
|
|
1222
1222
|
class Service
|
|
1223
1223
|
include Google::Apis::Core::Hashable
|
|
1224
1224
|
|
|
@@ -1250,9 +1250,9 @@ module Google
|
|
|
1250
1250
|
# @return [Hash<String,String>]
|
|
1251
1251
|
attr_accessor :labels
|
|
1252
1252
|
|
|
1253
|
-
# Identifier. The relative resource name of the Firebase
|
|
1254
|
-
#
|
|
1255
|
-
#
|
|
1253
|
+
# Identifier. The relative resource name of the Firebase SQL Connect service, in
|
|
1254
|
+
# the format: ``` projects/`project`/locations/`location`/services/`service` ```
|
|
1255
|
+
# Note that the service ID is specific to Firebase SQL Connect and does not
|
|
1256
1256
|
# correspond to any of the instance IDs of the underlying data source
|
|
1257
1257
|
# connections.
|
|
1258
1258
|
# Corresponds to the JSON property `name`
|
|
@@ -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.15.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 = "20260426"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,7 +22,7 @@ module Google
|
|
|
22
22
|
module FirebasedataconnectV1
|
|
23
23
|
# Firebase Data Connect API
|
|
24
24
|
#
|
|
25
|
-
# Firebase
|
|
25
|
+
# Firebase SQL Connect is a relational database service for mobile and web apps
|
|
26
26
|
# that lets you build and scale using a fully-managed PostgreSQL database
|
|
27
27
|
# powered by Cloud SQL. The REST API lets developers manage the connections to
|
|
28
28
|
# their database, change the schema of their database, and query the database.
|
|
@@ -85,8 +85,8 @@ module Google
|
|
|
85
85
|
end
|
|
86
86
|
|
|
87
87
|
# Lists information about the supported locations for this service. This method
|
|
88
|
-
# lists locations based on the resource scope provided in the
|
|
89
|
-
# ListLocationsRequest.name
|
|
88
|
+
# lists locations based on the resource scope provided in the
|
|
89
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
90
90
|
# the method lists the public locations available to all projects. * **Project-
|
|
91
91
|
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
92
92
|
# method lists locations visible to that specific project. This includes public,
|
|
@@ -97,8 +97,8 @@ module Google
|
|
|
97
97
|
# @param [String] name
|
|
98
98
|
# The resource that owns the locations collection, if applicable.
|
|
99
99
|
# @param [Array<String>, String] extra_location_types
|
|
100
|
-
# Optional. Do not use this field
|
|
101
|
-
#
|
|
100
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
101
|
+
# is primarily for internal usage.
|
|
102
102
|
# @param [String] filter
|
|
103
103
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
104
104
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -406,12 +406,12 @@ module Google
|
|
|
406
406
|
execute_or_queue_command(command, &block)
|
|
407
407
|
end
|
|
408
408
|
|
|
409
|
-
# Execute any GraphQL query
|
|
409
|
+
# Execute any GraphQL query or mutation against the Firebase SQL Connect's
|
|
410
410
|
# generated GraphQL schema. Grants full read and write access to the connected
|
|
411
411
|
# data sources. Note: Use introspection query to explore the generated GraphQL
|
|
412
412
|
# schema.
|
|
413
413
|
# @param [String] name
|
|
414
|
-
# Required. The relative resource name of Firebase
|
|
414
|
+
# Required. The relative resource name of Firebase SQL Connect service, in the
|
|
415
415
|
# format: ``` projects/`project`/locations/`location`/services/`service` ```
|
|
416
416
|
# @param [Google::Apis::FirebasedataconnectV1::GraphqlRequest] graphql_request_object
|
|
417
417
|
# @param [String] fields
|
|
@@ -443,12 +443,11 @@ module Google
|
|
|
443
443
|
execute_or_queue_command(command, &block)
|
|
444
444
|
end
|
|
445
445
|
|
|
446
|
-
# Execute any GraphQL query against the Firebase
|
|
447
|
-
#
|
|
448
|
-
#
|
|
449
|
-
# read-only query.
|
|
446
|
+
# Execute any GraphQL query against the Firebase SQL Connect's generated GraphQL
|
|
447
|
+
# schema. Grants full read to the connected data sources. `ExecuteGraphqlRead`
|
|
448
|
+
# is identical to `ExecuteGraphql` except it only accepts read-only query.
|
|
450
449
|
# @param [String] name
|
|
451
|
-
# Required. The relative resource name of Firebase
|
|
450
|
+
# Required. The relative resource name of Firebase SQL Connect service, in the
|
|
452
451
|
# format: ``` projects/`project`/locations/`location`/services/`service` ```
|
|
453
452
|
# @param [Google::Apis::FirebasedataconnectV1::GraphqlRequest] graphql_request_object
|
|
454
453
|
# @param [String] fields
|
|
@@ -511,14 +510,14 @@ module Google
|
|
|
511
510
|
execute_or_queue_command(command, &block)
|
|
512
511
|
end
|
|
513
512
|
|
|
514
|
-
# Execute introspection query against the Firebase
|
|
513
|
+
# Execute introspection query against the Firebase SQL Connect's generated
|
|
515
514
|
# GraphQL schema. GraphQL introspection query provides metadata such as what
|
|
516
515
|
# tables the schema have, what queries and mutations can be performed on the
|
|
517
516
|
# schema, and so on. Read more at https://graphql.org/learn/introspection.
|
|
518
517
|
# IntrospectGraphql can read schema metadata but cannot read rows from Cloud SQL
|
|
519
518
|
# instance, which can be done via ExecuteGraphqlRead.
|
|
520
519
|
# @param [String] name
|
|
521
|
-
# Required. The relative resource name of Firebase
|
|
520
|
+
# Required. The relative resource name of Firebase SQL Connect service, in the
|
|
522
521
|
# format: ``` projects/`project`/locations/`location`/services/`service` ```
|
|
523
522
|
# @param [Google::Apis::FirebasedataconnectV1::GraphqlRequest] graphql_request_object
|
|
524
523
|
# @param [String] fields
|
|
@@ -597,9 +596,9 @@ module Google
|
|
|
597
596
|
|
|
598
597
|
# Updates the parameters of a single Service.
|
|
599
598
|
# @param [String] name
|
|
600
|
-
# Identifier. The relative resource name of the Firebase
|
|
601
|
-
#
|
|
602
|
-
#
|
|
599
|
+
# Identifier. The relative resource name of the Firebase SQL Connect service, in
|
|
600
|
+
# the format: ``` projects/`project`/locations/`location`/services/`service` ```
|
|
601
|
+
# Note that the service ID is specific to Firebase SQL Connect and does not
|
|
603
602
|
# correspond to any of the instance IDs of the underlying data source
|
|
604
603
|
# connections.
|
|
605
604
|
# @param [Google::Apis::FirebasedataconnectV1::Service] service_object
|
|
@@ -876,7 +875,7 @@ module Google
|
|
|
876
875
|
execute_or_queue_command(command, &block)
|
|
877
876
|
end
|
|
878
877
|
|
|
879
|
-
# Impersonate a mutation defined on a Firebase
|
|
878
|
+
# Impersonate a mutation defined on a Firebase SQL Connect connector. It grants
|
|
880
879
|
# the admin SDK access to mutations defined in the given connector. The caller
|
|
881
880
|
# can choose to impersonate a particular Firebase Auth user, or skip @auth
|
|
882
881
|
# completely.
|
|
@@ -914,8 +913,8 @@ module Google
|
|
|
914
913
|
execute_or_queue_command(command, &block)
|
|
915
914
|
end
|
|
916
915
|
|
|
917
|
-
# Impersonate a query defined on a Firebase
|
|
918
|
-
#
|
|
916
|
+
# Impersonate a query defined on a Firebase SQL Connect connector. It grants the
|
|
917
|
+
# admin SDK access to queries defined in the given connector. The caller can
|
|
919
918
|
# choose to impersonate a particular Firebase Auth user, or skip @auth
|
|
920
919
|
# completely.
|
|
921
920
|
# @param [String] name
|
|
@@ -21,7 +21,7 @@ module Google
|
|
|
21
21
|
module Apis
|
|
22
22
|
# Firebase Data Connect API
|
|
23
23
|
#
|
|
24
|
-
# Firebase
|
|
24
|
+
# Firebase SQL Connect is a relational database service for mobile and web apps
|
|
25
25
|
# that lets you build and scale using a fully-managed PostgreSQL database
|
|
26
26
|
# powered by Cloud SQL. The REST API lets developers manage the connections to
|
|
27
27
|
# their database, change the schema of their database, and query the database.
|
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.15.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.15.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:
|