google-cloud-datastore-v1 0.9.0 → 0.11.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/README.md +1 -1
- data/lib/google/cloud/datastore/v1/datastore/client.rb +1 -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/lib/google/datastore/v1/datastore_pb.rb +1 -0
- data/lib/google/datastore/v1/query_pb.rb +2 -0
- data/proto_docs/google/datastore/v1/aggregation_result.rb +4 -3
- data/proto_docs/google/datastore/v1/datastore.rb +13 -5
- data/proto_docs/google/datastore/v1/entity.rb +4 -3
- data/proto_docs/google/datastore/v1/query.rb +27 -12
- metadata +12 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f962ec2a012f1641a30531eb6c21ddf87f43fccf77ceef9fd2764966da9e193
|
4
|
+
data.tar.gz: 3e6e83c7aeff0e1edf09c4ec7d7677664c737bb2062331acaa0fd0bb3ff1dbb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0de86bb94cb961b6c56864e31dd2315dbf0ae4d54334737ea2acd9ab68b29e303a08c833fa70b39fdeaf2887f90285b74e1e258de68748948957f49c0b1dee01
|
7
|
+
data.tar.gz: 52585e36ae91af41c1c578a40ab8339fd3e0578ec3d61ad8e1add73565d0dcbe419b5c2c40cf832662ef208ed3f5f50dce5513211fbf9abd7105580ff24227b6
|
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
|
|
@@ -610,8 +610,7 @@ module Google
|
|
610
610
|
# @param single_use_transaction [::Google::Cloud::Datastore::V1::TransactionOptions, ::Hash]
|
611
611
|
# Options for beginning a new transaction for this request.
|
612
612
|
# The transaction is committed when the request completes. If specified,
|
613
|
-
#
|
614
|
-
# must be
|
613
|
+
# {::Google::Cloud::Datastore::V1::TransactionOptions TransactionOptions.mode} must be
|
615
614
|
# {::Google::Cloud::Datastore::V1::TransactionOptions::ReadWrite TransactionOptions.ReadWrite}.
|
616
615
|
# @param mutations [::Array<::Google::Cloud::Datastore::V1::Mutation, ::Hash>]
|
617
616
|
# The mutations to perform.
|