google-cloud-datastore-v1 0.10.0 → 0.11.1
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/README.md +2 -2
- data/lib/google/cloud/datastore/v1/datastore/client.rb +2 -2
- data/lib/google/cloud/datastore/v1/datastore/rest/client.rb +963 -0
- data/lib/google/cloud/datastore/v1/datastore/rest/service_stub.rb +528 -0
- data/lib/google/cloud/datastore/v1/datastore/rest.rb +56 -0
- data/lib/google/cloud/datastore/v1/datastore.rb +6 -0
- data/lib/google/cloud/datastore/v1/rest.rb +37 -0
- data/lib/google/cloud/datastore/v1/version.rb +1 -1
- data/lib/google/cloud/datastore/v1.rb +5 -0
- data/proto_docs/google/api/client.rb +9 -3
- data/proto_docs/google/datastore/v1/entity.rb +2 -2
- data/proto_docs/google/datastore/v1/query.rb +9 -4
- metadata +10 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 930c430ab0c98b14ebc734a87049c8a348a488969f7ec62a16dc604f668efc57
|
4
|
+
data.tar.gz: 0bea5c1df22d6b13aa548e8e23ee77adfea8932e6529de00ec140b69973f9074
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f113bc26aa75b0a6cc3ba5ed59d163055e39f9f4ab88e80fd19e9d8917d1db42d37d32156adac43ed8c6f8a4a0d2b8f342e032c60f16eb10c43e9ebdb8be36f2
|
7
|
+
data.tar.gz: 18452c633bcde55bad0a9f8c0e774dcdbdf5cbb6532e06867082d26a4114db56b899a9c43be42156e5299381773ec7097ae078168f670b5c6fb02dbb9d1489c5
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Firestore in Datastore mode V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Accesses the schemaless NoSQL database to provide fully managed, robust, scalable storage for your application.
|
4
4
|
|
5
5
|
Firestore in Datastore mode is a NoSQL document database built for automatic scaling, high performance, and ease of application development.
|
6
6
|
|
@@ -47,7 +47,7 @@ for general usage information.
|
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
49
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
50
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
53
53
|
|
@@ -1022,9 +1022,9 @@ module Google
|
|
1022
1022
|
# * (`String`) The path to a service account key file in JSON format
|
1023
1023
|
# * (`Hash`) A service account key as a Hash
|
1024
1024
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
1025
|
-
# (see the [googleauth docs](https://
|
1025
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
1026
1026
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1027
|
-
# (see the [signet docs](https://
|
1027
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1028
1028
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1029
1029
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1030
1030
|
# * (`nil`) indicating no credentials
|