google-cloud-firestore-v1 0.4.6 → 0.4.7
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/firestore/v1/firestore/client.rb +3 -1
- data/lib/google/cloud/firestore/v1/version.rb +1 -1
- data/lib/google/cloud/firestore/v1.rb +2 -0
- data/lib/google/firestore/v1/common_pb.rb +0 -1
- data/lib/google/firestore/v1/document_pb.rb +0 -1
- data/lib/google/firestore/v1/query_pb.rb +1 -1
- data/lib/google/firestore/v1/write_pb.rb +0 -1
- data/proto_docs/google/firestore/v1/common.rb +1 -1
- data/proto_docs/google/firestore/v1/firestore.rb +4 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 293b70f0f7cc7c6e008c6994dde6ba5f8063d7a33e2a5b28c725c0c00025e507
|
4
|
+
data.tar.gz: 871fde3478084cdaa5997777e872d74ea666f383c0edb1c4355affba0510f480
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c47a82db34970f65434c9ce02edfcccca5d95cc4df0d045fb9c6c86cb0eafa1e9554171d2f896905fa73cee22a8fc80446895e344e934bfb1109bac8d8d6384
|
7
|
+
data.tar.gz: 7f73d907f39f970adee76595098ec2dd90a4e3174a8d3ac18da487e9b9d1795a00fa0cd5766e2de052e2a4355c2ca0ec2ce35703db5d0322f0f09d785e7da575
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ request = ::Google::Cloud::Firestore::V1::GetDocumentRequest.new # (request fiel
|
|
37
37
|
response = client.get_document request
|
38
38
|
```
|
39
39
|
|
40
|
-
View the [Client Library Documentation](https://
|
40
|
+
View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-firestore-v1/latest)
|
41
41
|
for class and method documentation.
|
42
42
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/firestore)
|
@@ -1044,7 +1044,9 @@ module Google
|
|
1044
1044
|
# @param structured_query [::Google::Cloud::Firestore::V1::StructuredQuery, ::Hash]
|
1045
1045
|
# A structured query.
|
1046
1046
|
# @param transaction [::String]
|
1047
|
-
#
|
1047
|
+
# Run the query within an already active transaction.
|
1048
|
+
#
|
1049
|
+
# The value here is the opaque transaction ID to execute the query in.
|
1048
1050
|
# @param new_transaction [::Google::Cloud::Firestore::V1::TransactionOptions, ::Hash]
|
1049
1051
|
# Starts a new transaction and reads the documents.
|
1050
1052
|
# Defaults to a read-only transaction.
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/firestore/v1/query.proto
|
3
3
|
|
4
|
+
require 'google/api/field_behavior_pb'
|
4
5
|
require 'google/firestore/v1/document_pb'
|
5
6
|
require 'google/protobuf/wrappers_pb'
|
6
|
-
require 'google/api/annotations_pb'
|
7
7
|
require 'google/protobuf'
|
8
8
|
|
9
9
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
@@ -43,7 +43,7 @@ module Google
|
|
43
43
|
# @!attribute [rw] update_time
|
44
44
|
# @return [::Google::Protobuf::Timestamp]
|
45
45
|
# When set, the target document must exist and have been last updated at
|
46
|
-
# that time.
|
46
|
+
# that time. Timestamp must be microsecond aligned.
|
47
47
|
class Precondition
|
48
48
|
include ::Google::Protobuf::MessageExts
|
49
49
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -319,7 +319,9 @@ module Google
|
|
319
319
|
# A structured query.
|
320
320
|
# @!attribute [rw] transaction
|
321
321
|
# @return [::String]
|
322
|
-
#
|
322
|
+
# Run the query within an already active transaction.
|
323
|
+
#
|
324
|
+
# The value here is the opaque transaction ID to execute the query in.
|
323
325
|
# @!attribute [rw] new_transaction
|
324
326
|
# @return [::Google::Cloud::Firestore::V1::TransactionOptions]
|
325
327
|
# Starts a new transaction and reads the documents.
|
@@ -344,8 +346,7 @@ module Google
|
|
344
346
|
# If set, no other fields will be set in this response.
|
345
347
|
# @!attribute [rw] document
|
346
348
|
# @return [::Google::Cloud::Firestore::V1::Document]
|
347
|
-
# A query result.
|
348
|
-
# Not set when reporting partial progress.
|
349
|
+
# A query result, not set when reporting partial progress.
|
349
350
|
# @!attribute [rw] read_time
|
350
351
|
# @return [::Google::Protobuf::Timestamp]
|
351
352
|
# The time at which the document was read. This may be monotonically
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-firestore-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -215,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
215
|
- !ruby/object:Gem::Version
|
216
216
|
version: '0'
|
217
217
|
requirements: []
|
218
|
-
rubygems_version: 3.3.
|
218
|
+
rubygems_version: 3.3.5
|
219
219
|
signing_key:
|
220
220
|
specification_version: 4
|
221
221
|
summary: API Client library for the Cloud Firestore V1 API
|