google-apis-firestore_v1beta1 0.50.0 → 0.51.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: 8519a2e53418b2291af02cb3a0d5ff1cb8d4e21961988ed73505153cb4b89576
|
|
4
|
+
data.tar.gz: 9b203d5ab2ea3b48764d27c372bcc3b5eb801304cccbab59c43347070d15eee7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b481eaf2086591967db1f3cdfaf40d228a4bba9a4b7579a9bad8c188a7b7a45f4eef4aaf064f385e2115494cd899ca0e79ec9eb8a3e3bf90bd399e6a7e996350
|
|
7
|
+
data.tar.gz: e300d97fc886bb6da84cbddfbd5a7a740aaf64d95b5b36cbcf523aa1ca544fe64fb970cd38c47775cca0e64e843a030bb75b6199e1e8b112f77c2e1eb8f3cfd2
|
data/CHANGELOG.md
CHANGED
|
@@ -2506,11 +2506,18 @@ module Google
|
|
|
2506
2506
|
end
|
|
2507
2507
|
|
|
2508
2508
|
# Options for a transaction that can be used to read and write documents.
|
|
2509
|
-
# Firestore does not allow 3rd party auth requests to create read-write.
|
|
2510
|
-
# transactions.
|
|
2511
2509
|
class ReadWrite
|
|
2512
2510
|
include Google::Apis::Core::Hashable
|
|
2513
2511
|
|
|
2512
|
+
# Optional. The concurrency control mode to use for this transaction. A database
|
|
2513
|
+
# is able to use different concurrency modes for different transactions
|
|
2514
|
+
# simultaneously. 3rd party auth requests are only allowed to create optimistic
|
|
2515
|
+
# read-write transactions and must specify that here even if the database-level
|
|
2516
|
+
# setting is already configured to optimistic.
|
|
2517
|
+
# Corresponds to the JSON property `concurrencyMode`
|
|
2518
|
+
# @return [String]
|
|
2519
|
+
attr_accessor :concurrency_mode
|
|
2520
|
+
|
|
2514
2521
|
# An optional transaction to retry.
|
|
2515
2522
|
# Corresponds to the JSON property `retryTransaction`
|
|
2516
2523
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
@@ -2523,6 +2530,7 @@ module Google
|
|
|
2523
2530
|
|
|
2524
2531
|
# Update properties of this object
|
|
2525
2532
|
def update!(**args)
|
|
2533
|
+
@concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
|
|
2526
2534
|
@retry_transaction = args[:retry_transaction] if args.key?(:retry_transaction)
|
|
2527
2535
|
end
|
|
2528
2536
|
end
|
|
@@ -3145,8 +3153,6 @@ module Google
|
|
|
3145
3153
|
attr_accessor :read_only
|
|
3146
3154
|
|
|
3147
3155
|
# Options for a transaction that can be used to read and write documents.
|
|
3148
|
-
# Firestore does not allow 3rd party auth requests to create read-write.
|
|
3149
|
-
# transactions.
|
|
3150
3156
|
# Corresponds to the JSON property `readWrite`
|
|
3151
3157
|
# @return [Google::Apis::FirestoreV1beta1::ReadWrite]
|
|
3152
3158
|
attr_accessor :read_write
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module FirestoreV1beta1
|
|
18
18
|
# Version of the google-apis-firestore_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.51.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 = "20260427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1316,6 +1316,7 @@ module Google
|
|
|
1316
1316
|
class ReadWrite
|
|
1317
1317
|
# @private
|
|
1318
1318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1319
|
+
property :concurrency_mode, as: 'concurrencyMode'
|
|
1319
1320
|
property :retry_transaction, :base64 => true, as: 'retryTransaction'
|
|
1320
1321
|
end
|
|
1321
1322
|
end
|
|
@@ -513,7 +513,8 @@ module Google
|
|
|
513
513
|
# @param [String] parent
|
|
514
514
|
# Required. The parent document. In the format: `projects/`project_id`/databases/
|
|
515
515
|
# `database_id`/documents/`document_path``. For example: `projects/my-project/
|
|
516
|
-
# databases/my-database/documents/chatrooms/my-chatroom`
|
|
516
|
+
# databases/my-database/documents/chatrooms/my-chatroom` Use `projects/`
|
|
517
|
+
# project_id`/databases/`database_id`/documents` to list top-level collections.
|
|
517
518
|
# @param [Google::Apis::FirestoreV1beta1::ListCollectionIdsRequest] list_collection_ids_request_object
|
|
518
519
|
# @param [String] fields
|
|
519
520
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-firestore_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.51.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-firestore_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.51.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|