google-apis-spanner_v1 0.54.0 → 0.55.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: 9107bac6c7d681cbe4104bb32b2e5cd5cc3fd6e521f8ba544ca6327dda51538f
|
|
4
|
+
data.tar.gz: c8ea88b587846fc30eec1416600e133683360f048f9d740ed1a602b04ac563f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1cde6cf3b7a94ab97deeaed6c9547679761c67fb9ae8dbfa5f71591e9a09326ecf72c70b1e58675a8e28024feab7aeafb78bab84326a42d9ff46e0a1cdc5984
|
|
7
|
+
data.tar.gz: 2fb4eb352fd955d199a7e7ebe94a80c11be2362cca468ae4c46cc36ed870cb3303697d8c66deb3c04db146b509d404bb9d8d2889af9ccfafa5a8cbeabc685fa8
|
data/CHANGELOG.md
CHANGED
|
@@ -1345,6 +1345,11 @@ module Google
|
|
|
1345
1345
|
# @return [String]
|
|
1346
1346
|
attr_accessor :commit_timestamp
|
|
1347
1347
|
|
|
1348
|
+
# The isolation level used for the read-write transaction.
|
|
1349
|
+
# Corresponds to the JSON property `isolationLevel`
|
|
1350
|
+
# @return [String]
|
|
1351
|
+
attr_accessor :isolation_level
|
|
1352
|
+
|
|
1348
1353
|
# When a read-write transaction is executed on a multiplexed session, this
|
|
1349
1354
|
# precommit token is sent back to the client as a part of the Transaction
|
|
1350
1355
|
# message in the BeginTransaction response and also as a part of the ResultSet
|
|
@@ -1353,6 +1358,11 @@ module Google
|
|
|
1353
1358
|
# @return [Google::Apis::SpannerV1::MultiplexedSessionPrecommitToken]
|
|
1354
1359
|
attr_accessor :precommit_token
|
|
1355
1360
|
|
|
1361
|
+
# The read lock mode used for the read-write transaction.
|
|
1362
|
+
# Corresponds to the JSON property `readLockMode`
|
|
1363
|
+
# @return [String]
|
|
1364
|
+
attr_accessor :read_lock_mode
|
|
1365
|
+
|
|
1356
1366
|
# If `TransactionOptions.isolation_level` is set to `IsolationLevel.
|
|
1357
1367
|
# REPEATABLE_READ`, then the snapshot timestamp is the timestamp at which all
|
|
1358
1368
|
# reads in the transaction ran. This timestamp is never returned.
|
|
@@ -1368,7 +1378,9 @@ module Google
|
|
|
1368
1378
|
def update!(**args)
|
|
1369
1379
|
@commit_stats = args[:commit_stats] if args.key?(:commit_stats)
|
|
1370
1380
|
@commit_timestamp = args[:commit_timestamp] if args.key?(:commit_timestamp)
|
|
1381
|
+
@isolation_level = args[:isolation_level] if args.key?(:isolation_level)
|
|
1371
1382
|
@precommit_token = args[:precommit_token] if args.key?(:precommit_token)
|
|
1383
|
+
@read_lock_mode = args[:read_lock_mode] if args.key?(:read_lock_mode)
|
|
1372
1384
|
@snapshot_timestamp = args[:snapshot_timestamp] if args.key?(:snapshot_timestamp)
|
|
1373
1385
|
end
|
|
1374
1386
|
end
|
|
@@ -3683,6 +3695,8 @@ module Google
|
|
|
3683
3695
|
|
|
3684
3696
|
# The number of nodes allocated to this instance partition. Users can set the `
|
|
3685
3697
|
# node_count` field to specify the target number of nodes allocated to the
|
|
3698
|
+
# instance partition. If autoscaling is enabled, node_count is treated as an
|
|
3699
|
+
# OUTPUT_ONLY field and reflects the current number of nodes allocated to the
|
|
3686
3700
|
# instance partition. This may be zero in API responses for instance partitions
|
|
3687
3701
|
# that are not yet in state `READY`.
|
|
3688
3702
|
# Corresponds to the JSON property `nodeCount`
|
|
@@ -3691,8 +3705,11 @@ module Google
|
|
|
3691
3705
|
|
|
3692
3706
|
# The number of processing units allocated to this instance partition. Users can
|
|
3693
3707
|
# set the `processing_units` field to specify the target number of processing
|
|
3694
|
-
# units allocated to the instance partition.
|
|
3695
|
-
#
|
|
3708
|
+
# units allocated to the instance partition. If autoscaling is enabled,
|
|
3709
|
+
# processing_units is treated as an OUTPUT_ONLY field and reflects the current
|
|
3710
|
+
# number of processing units allocated to the instance partition. This might be
|
|
3711
|
+
# zero in API responses for instance partitions that are not yet in the `READY`
|
|
3712
|
+
# state.
|
|
3696
3713
|
# Corresponds to the JSON property `processingUnits`
|
|
3697
3714
|
# @return [Fixnum]
|
|
3698
3715
|
attr_accessor :processing_units
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SpannerV1
|
|
18
18
|
# Version of the google-apis-spanner_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.55.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260622"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1421,8 +1421,10 @@ module Google
|
|
|
1421
1421
|
property :commit_stats, as: 'commitStats', class: Google::Apis::SpannerV1::CommitStats, decorator: Google::Apis::SpannerV1::CommitStats::Representation
|
|
1422
1422
|
|
|
1423
1423
|
property :commit_timestamp, as: 'commitTimestamp'
|
|
1424
|
+
property :isolation_level, as: 'isolationLevel'
|
|
1424
1425
|
property :precommit_token, as: 'precommitToken', class: Google::Apis::SpannerV1::MultiplexedSessionPrecommitToken, decorator: Google::Apis::SpannerV1::MultiplexedSessionPrecommitToken::Representation
|
|
1425
1426
|
|
|
1427
|
+
property :read_lock_mode, as: 'readLockMode'
|
|
1426
1428
|
property :snapshot_timestamp, as: 'snapshotTimestamp'
|
|
1427
1429
|
end
|
|
1428
1430
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-spanner_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.55.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-spanner_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-spanner_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-spanner_v1/v0.55.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-spanner_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|