google-apis-spanner_v1 0.41.0 → 0.42.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: e148f7d859eabaed51a2644a71934e2de43dadb01eee43702dd596d091315a7a
|
4
|
+
data.tar.gz: adf34ff50bc2c529ccba6c53cfcb729e9c7def832688253a9f2f878333aba8fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3fe1f0b91534e99a327abacef1d0b77da0288c1f808c469781486950662da37508698be6cdef05255953f7a2f81b7025f083a7fc077dbc05a4f63604ec54a31
|
7
|
+
data.tar.gz: 740a9a814f49732b308b4c2c9880114d16d67bbab87190aac1d459f49ab02f97c28d8572c60658d662d2f544f11c8da44f55a16fd3fc7362da2e2718b9bcfd36
|
data/CHANGELOG.md
CHANGED
@@ -105,8 +105,8 @@ module Google
|
|
105
105
|
|
106
106
|
# Optional. A user-supplied tag associated with the split points. For example, "
|
107
107
|
# initial_data_load", "special_event_1". Defaults to "CloudAddSplitPointsAPI" if
|
108
|
-
# not specified. The length of the tag must not exceed 50 characters,else
|
109
|
-
#
|
108
|
+
# not specified. The length of the tag must not exceed 50 characters, or else it
|
109
|
+
# is trimmed. Only valid UTF8 characters are allowed.
|
110
110
|
# Corresponds to the JSON property `initiator`
|
111
111
|
# @return [String]
|
112
112
|
attr_accessor :initiator
|
@@ -809,11 +809,11 @@ module Google
|
|
809
809
|
# to retry. 2. Snapshot read-only. Snapshot read-only transactions provide
|
810
810
|
# guaranteed consistency across several reads, but do not allow writes. Snapshot
|
811
811
|
# read-only transactions can be configured to read at timestamps in the past, or
|
812
|
-
# configured to perform a strong read (where Spanner
|
813
|
-
#
|
814
|
-
#
|
815
|
-
#
|
816
|
-
#
|
812
|
+
# configured to perform a strong read (where Spanner selects a timestamp such
|
813
|
+
# that the read is guaranteed to see the effects of all transactions that have
|
814
|
+
# committed before the start of the read). Snapshot read-only transactions do
|
815
|
+
# not need to be committed. Queries on change streams must be performed with the
|
816
|
+
# snapshot read-only transaction mode, specifying a strong read. See
|
817
817
|
# TransactionOptions.ReadOnly.strong for more details. 3. Partitioned DML. This
|
818
818
|
# type of transaction is used to execute a single Partitioned DML statement.
|
819
819
|
# Partitioned DML partitions the key space and runs the DML statement over each
|
@@ -863,7 +863,7 @@ module Google
|
|
863
863
|
# has no outstanding reads or SQL queries and has not started a read or SQL
|
864
864
|
# query within the last 10 seconds. Idle transactions can be aborted by Cloud
|
865
865
|
# Spanner so that they don't hold on to locks indefinitely. If an idle
|
866
|
-
# transaction is aborted, the commit
|
866
|
+
# transaction is aborted, the commit fails with error `ABORTED`. If this
|
867
867
|
# behavior is undesirable, periodically executing a simple SQL query in the
|
868
868
|
# transaction (for example, `SELECT 1`) prevents the transaction from becoming
|
869
869
|
# idle. Snapshot read-only transactions: Snapshot read-only transactions
|
@@ -898,8 +898,8 @@ module Google
|
|
898
898
|
# guaranteed to see a consistent prefix of the global transaction history: they
|
899
899
|
# observe modifications done by all transactions with a commit timestamp less
|
900
900
|
# than or equal to the read timestamp, and observe none of the modifications
|
901
|
-
# done by transactions with a larger commit timestamp. They
|
902
|
-
# conflicting transactions that
|
901
|
+
# done by transactions with a larger commit timestamp. They block until all
|
902
|
+
# conflicting transactions that can be assigned commit timestamps <= the read
|
903
903
|
# timestamp have finished. The timestamp can either be expressed as an absolute
|
904
904
|
# Cloud Spanner commit timestamp or a staleness relative to the current time.
|
905
905
|
# These modes do not require a "negotiation phase" to pick a timestamp. As a
|
@@ -921,20 +921,20 @@ module Google
|
|
921
921
|
# staleness reads are usually a little slower than comparable exact staleness
|
922
922
|
# reads. However, they are typically able to return fresher results, and are
|
923
923
|
# more likely to execute at the closest replica. Because the timestamp
|
924
|
-
# negotiation requires up-front knowledge of which rows
|
925
|
-
#
|
926
|
-
#
|
927
|
-
#
|
928
|
-
#
|
929
|
-
#
|
930
|
-
#
|
931
|
-
#
|
932
|
-
#
|
933
|
-
#
|
934
|
-
#
|
935
|
-
#
|
936
|
-
#
|
937
|
-
#
|
924
|
+
# negotiation requires up-front knowledge of which rows are read, it can only be
|
925
|
+
# used with single-use read-only transactions. See TransactionOptions.ReadOnly.
|
926
|
+
# max_staleness and TransactionOptions.ReadOnly.min_read_timestamp. Old read
|
927
|
+
# timestamps and garbage collection: Cloud Spanner continuously garbage collects
|
928
|
+
# deleted and overwritten data in the background to reclaim storage space. This
|
929
|
+
# process is known as "version GC". By default, version GC reclaims versions
|
930
|
+
# after they are one hour old. Because of this, Cloud Spanner can't perform
|
931
|
+
# reads at read timestamps more than one hour in the past. This restriction also
|
932
|
+
# applies to in-progress reads and/or SQL queries whose timestamp become too old
|
933
|
+
# while executing. Reads and SQL queries with too-old read timestamps fail with
|
934
|
+
# the error `FAILED_PRECONDITION`. You can configure and extend the `
|
935
|
+
# VERSION_RETENTION_PERIOD` of a database up to a period as long as one week,
|
936
|
+
# which allows Cloud Spanner to perform reads up to one week in the past.
|
937
|
+
# Querying change Streams: A Change Stream is a schema object that can be
|
938
938
|
# configured to watch data changes on the entire database, a set of tables, or a
|
939
939
|
# set of columns in a database. When a change stream is created, Spanner
|
940
940
|
# automatically defines a corresponding SQL Table-Valued Function (TVF) that can
|
@@ -948,9 +948,9 @@ module Google
|
|
948
948
|
# accessible using the strong read-only timestamp_bound. All other
|
949
949
|
# TransactionOptions are invalid for change stream queries. In addition, if
|
950
950
|
# TransactionOptions.read_only.return_read_timestamp is set to true, a special
|
951
|
-
# value of 2^63 - 2
|
952
|
-
#
|
953
|
-
#
|
951
|
+
# value of 2^63 - 2 is returned in the Transaction message that describes the
|
952
|
+
# transaction, instead of a valid read timestamp. This special value should be
|
953
|
+
# discarded and not used for any subsequent queries. Please see https://cloud.
|
954
954
|
# google.com/spanner/docs/change-streams for more details on how to query the
|
955
955
|
# change stream TVFs. Partitioned DML transactions: Partitioned DML transactions
|
956
956
|
# are used to execute DML statements with a different execution strategy that
|
@@ -983,7 +983,7 @@ module Google
|
|
983
983
|
# execution of a single DML statement via ExecuteSql or ExecuteStreamingSql. -
|
984
984
|
# If any error is encountered during the execution of the partitioned DML
|
985
985
|
# operation (for instance, a UNIQUE INDEX violation, division by zero, or a
|
986
|
-
# value that
|
986
|
+
# value that can't be stored due to schema constraints), then the operation is
|
987
987
|
# stopped at that point and an error is returned. It is possible that at this
|
988
988
|
# point, some partitions have been committed (or even committed multiple times),
|
989
989
|
# and other partitions have not been run at all. Given the above, Partitioned
|
@@ -1268,11 +1268,11 @@ module Google
|
|
1268
1268
|
# to retry. 2. Snapshot read-only. Snapshot read-only transactions provide
|
1269
1269
|
# guaranteed consistency across several reads, but do not allow writes. Snapshot
|
1270
1270
|
# read-only transactions can be configured to read at timestamps in the past, or
|
1271
|
-
# configured to perform a strong read (where Spanner
|
1272
|
-
#
|
1273
|
-
#
|
1274
|
-
#
|
1275
|
-
#
|
1271
|
+
# configured to perform a strong read (where Spanner selects a timestamp such
|
1272
|
+
# that the read is guaranteed to see the effects of all transactions that have
|
1273
|
+
# committed before the start of the read). Snapshot read-only transactions do
|
1274
|
+
# not need to be committed. Queries on change streams must be performed with the
|
1275
|
+
# snapshot read-only transaction mode, specifying a strong read. See
|
1276
1276
|
# TransactionOptions.ReadOnly.strong for more details. 3. Partitioned DML. This
|
1277
1277
|
# type of transaction is used to execute a single Partitioned DML statement.
|
1278
1278
|
# Partitioned DML partitions the key space and runs the DML statement over each
|
@@ -1322,7 +1322,7 @@ module Google
|
|
1322
1322
|
# has no outstanding reads or SQL queries and has not started a read or SQL
|
1323
1323
|
# query within the last 10 seconds. Idle transactions can be aborted by Cloud
|
1324
1324
|
# Spanner so that they don't hold on to locks indefinitely. If an idle
|
1325
|
-
# transaction is aborted, the commit
|
1325
|
+
# transaction is aborted, the commit fails with error `ABORTED`. If this
|
1326
1326
|
# behavior is undesirable, periodically executing a simple SQL query in the
|
1327
1327
|
# transaction (for example, `SELECT 1`) prevents the transaction from becoming
|
1328
1328
|
# idle. Snapshot read-only transactions: Snapshot read-only transactions
|
@@ -1357,8 +1357,8 @@ module Google
|
|
1357
1357
|
# guaranteed to see a consistent prefix of the global transaction history: they
|
1358
1358
|
# observe modifications done by all transactions with a commit timestamp less
|
1359
1359
|
# than or equal to the read timestamp, and observe none of the modifications
|
1360
|
-
# done by transactions with a larger commit timestamp. They
|
1361
|
-
# conflicting transactions that
|
1360
|
+
# done by transactions with a larger commit timestamp. They block until all
|
1361
|
+
# conflicting transactions that can be assigned commit timestamps <= the read
|
1362
1362
|
# timestamp have finished. The timestamp can either be expressed as an absolute
|
1363
1363
|
# Cloud Spanner commit timestamp or a staleness relative to the current time.
|
1364
1364
|
# These modes do not require a "negotiation phase" to pick a timestamp. As a
|
@@ -1380,20 +1380,20 @@ module Google
|
|
1380
1380
|
# staleness reads are usually a little slower than comparable exact staleness
|
1381
1381
|
# reads. However, they are typically able to return fresher results, and are
|
1382
1382
|
# more likely to execute at the closest replica. Because the timestamp
|
1383
|
-
# negotiation requires up-front knowledge of which rows
|
1384
|
-
#
|
1385
|
-
#
|
1386
|
-
#
|
1387
|
-
#
|
1388
|
-
#
|
1389
|
-
#
|
1390
|
-
#
|
1391
|
-
#
|
1392
|
-
#
|
1393
|
-
#
|
1394
|
-
#
|
1395
|
-
#
|
1396
|
-
#
|
1383
|
+
# negotiation requires up-front knowledge of which rows are read, it can only be
|
1384
|
+
# used with single-use read-only transactions. See TransactionOptions.ReadOnly.
|
1385
|
+
# max_staleness and TransactionOptions.ReadOnly.min_read_timestamp. Old read
|
1386
|
+
# timestamps and garbage collection: Cloud Spanner continuously garbage collects
|
1387
|
+
# deleted and overwritten data in the background to reclaim storage space. This
|
1388
|
+
# process is known as "version GC". By default, version GC reclaims versions
|
1389
|
+
# after they are one hour old. Because of this, Cloud Spanner can't perform
|
1390
|
+
# reads at read timestamps more than one hour in the past. This restriction also
|
1391
|
+
# applies to in-progress reads and/or SQL queries whose timestamp become too old
|
1392
|
+
# while executing. Reads and SQL queries with too-old read timestamps fail with
|
1393
|
+
# the error `FAILED_PRECONDITION`. You can configure and extend the `
|
1394
|
+
# VERSION_RETENTION_PERIOD` of a database up to a period as long as one week,
|
1395
|
+
# which allows Cloud Spanner to perform reads up to one week in the past.
|
1396
|
+
# Querying change Streams: A Change Stream is a schema object that can be
|
1397
1397
|
# configured to watch data changes on the entire database, a set of tables, or a
|
1398
1398
|
# set of columns in a database. When a change stream is created, Spanner
|
1399
1399
|
# automatically defines a corresponding SQL Table-Valued Function (TVF) that can
|
@@ -1407,9 +1407,9 @@ module Google
|
|
1407
1407
|
# accessible using the strong read-only timestamp_bound. All other
|
1408
1408
|
# TransactionOptions are invalid for change stream queries. In addition, if
|
1409
1409
|
# TransactionOptions.read_only.return_read_timestamp is set to true, a special
|
1410
|
-
# value of 2^63 - 2
|
1411
|
-
#
|
1412
|
-
#
|
1410
|
+
# value of 2^63 - 2 is returned in the Transaction message that describes the
|
1411
|
+
# transaction, instead of a valid read timestamp. This special value should be
|
1412
|
+
# discarded and not used for any subsequent queries. Please see https://cloud.
|
1413
1413
|
# google.com/spanner/docs/change-streams for more details on how to query the
|
1414
1414
|
# change stream TVFs. Partitioned DML transactions: Partitioned DML transactions
|
1415
1415
|
# are used to execute DML statements with a different execution strategy that
|
@@ -1442,7 +1442,7 @@ module Google
|
|
1442
1442
|
# execution of a single DML statement via ExecuteSql or ExecuteStreamingSql. -
|
1443
1443
|
# If any error is encountered during the execution of the partitioned DML
|
1444
1444
|
# operation (for instance, a UNIQUE INDEX violation, division by zero, or a
|
1445
|
-
# value that
|
1445
|
+
# value that can't be stored due to schema constraints), then the operation is
|
1446
1446
|
# stopped at that point and an error is returned. It is possible that at this
|
1447
1447
|
# point, some partitions have been committed (or even committed multiple times),
|
1448
1448
|
# and other partitions have not been run at all. Given the above, Partitioned
|
@@ -2267,6 +2267,33 @@ module Google
|
|
2267
2267
|
end
|
2268
2268
|
end
|
2269
2269
|
|
2270
|
+
# The configuration for each database in the target instance configuration.
|
2271
|
+
class DatabaseMoveConfig
|
2272
|
+
include Google::Apis::Core::Hashable
|
2273
|
+
|
2274
|
+
# Required. The unique identifier of the database resource in the Instance. For
|
2275
|
+
# example if the database uri is projects/foo/instances/bar/databases/baz, the
|
2276
|
+
# id to supply here is baz.
|
2277
|
+
# Corresponds to the JSON property `databaseId`
|
2278
|
+
# @return [String]
|
2279
|
+
attr_accessor :database_id
|
2280
|
+
|
2281
|
+
# Encryption configuration for a Cloud Spanner database.
|
2282
|
+
# Corresponds to the JSON property `encryptionConfig`
|
2283
|
+
# @return [Google::Apis::SpannerV1::InstanceEncryptionConfig]
|
2284
|
+
attr_accessor :encryption_config
|
2285
|
+
|
2286
|
+
def initialize(**args)
|
2287
|
+
update!(**args)
|
2288
|
+
end
|
2289
|
+
|
2290
|
+
# Update properties of this object
|
2291
|
+
def update!(**args)
|
2292
|
+
@database_id = args[:database_id] if args.key?(:database_id)
|
2293
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
2294
|
+
end
|
2295
|
+
end
|
2296
|
+
|
2270
2297
|
# A Cloud Spanner database role.
|
2271
2298
|
class DatabaseRole
|
2272
2299
|
include Google::Apis::Core::Hashable
|
@@ -3468,6 +3495,48 @@ module Google
|
|
3468
3495
|
end
|
3469
3496
|
end
|
3470
3497
|
|
3498
|
+
# Encryption configuration for a Cloud Spanner database.
|
3499
|
+
class InstanceEncryptionConfig
|
3500
|
+
include Google::Apis::Core::Hashable
|
3501
|
+
|
3502
|
+
# Optional. This field is maintained for backwards compatibility. For new
|
3503
|
+
# callers, we recommend using `kms_key_names` to specify the KMS key. `
|
3504
|
+
# kms_key_name` should only be used if the location of the KMS key matches the
|
3505
|
+
# database instance’s configuration (location) exactly. E.g. The KMS location is
|
3506
|
+
# in us-central1 or nam3 and the database instance is also in us-central1 or
|
3507
|
+
# nam3. The Cloud KMS key to be used for encrypting and decrypting the database.
|
3508
|
+
# Values are of the form `projects//locations//keyRings//cryptoKeys/`.
|
3509
|
+
# Corresponds to the JSON property `kmsKeyName`
|
3510
|
+
# @return [String]
|
3511
|
+
attr_accessor :kms_key_name
|
3512
|
+
|
3513
|
+
# Optional. Specifies the KMS configuration for one or more keys used to encrypt
|
3514
|
+
# the database. Values are of the form `projects//locations//keyRings//
|
3515
|
+
# cryptoKeys/`. The keys referenced by `kms_key_names` must fully cover all
|
3516
|
+
# regions of the database's instance configuration. Some examples: * For
|
3517
|
+
# regional (single-region) instance configurations, specify a regional location
|
3518
|
+
# KMS key. * For multi-region instance configurations of type `GOOGLE_MANAGED`,
|
3519
|
+
# either specify a multi-region location KMS key or multiple regional location
|
3520
|
+
# KMS keys that cover all regions in the instance configuration. * For an
|
3521
|
+
# instance configuration of type `USER_MANAGED`, specify only regional location
|
3522
|
+
# KMS keys to cover each region in the instance configuration. Multi-region
|
3523
|
+
# location KMS keys aren't supported for `USER_MANAGED` type instance
|
3524
|
+
# configurations.
|
3525
|
+
# Corresponds to the JSON property `kmsKeyNames`
|
3526
|
+
# @return [Array<String>]
|
3527
|
+
attr_accessor :kms_key_names
|
3528
|
+
|
3529
|
+
def initialize(**args)
|
3530
|
+
update!(**args)
|
3531
|
+
end
|
3532
|
+
|
3533
|
+
# Update properties of this object
|
3534
|
+
def update!(**args)
|
3535
|
+
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
3536
|
+
@kms_key_names = args[:kms_key_names] if args.key?(:kms_key_names)
|
3537
|
+
end
|
3538
|
+
end
|
3539
|
+
|
3471
3540
|
# Encapsulates progress related information for a Cloud Spanner long running
|
3472
3541
|
# instance operations.
|
3473
3542
|
class InstanceOperationProgress
|
@@ -4440,6 +4509,12 @@ module Google
|
|
4440
4509
|
# @return [String]
|
4441
4510
|
attr_accessor :target_config
|
4442
4511
|
|
4512
|
+
# Optional. The configuration for each database in the target instance
|
4513
|
+
# configuration.
|
4514
|
+
# Corresponds to the JSON property `targetDatabaseMoveConfigs`
|
4515
|
+
# @return [Array<Google::Apis::SpannerV1::DatabaseMoveConfig>]
|
4516
|
+
attr_accessor :target_database_move_configs
|
4517
|
+
|
4443
4518
|
def initialize(**args)
|
4444
4519
|
update!(**args)
|
4445
4520
|
end
|
@@ -4447,6 +4522,7 @@ module Google
|
|
4447
4522
|
# Update properties of this object
|
4448
4523
|
def update!(**args)
|
4449
4524
|
@target_config = args[:target_config] if args.key?(:target_config)
|
4525
|
+
@target_database_move_configs = args[:target_database_move_configs] if args.key?(:target_database_move_configs)
|
4450
4526
|
end
|
4451
4527
|
end
|
4452
4528
|
|
@@ -5385,7 +5461,7 @@ module Google
|
|
5385
5461
|
|
5386
5462
|
# Executes all reads at the given timestamp. Unlike other modes, reads at a
|
5387
5463
|
# specific timestamp are repeatable; the same read at the same timestamp always
|
5388
|
-
# returns the same data. If the timestamp is in the future, the read
|
5464
|
+
# returns the same data. If the timestamp is in the future, the read is blocked
|
5389
5465
|
# until the specified timestamp, modulo the read's deadline. Useful for large
|
5390
5466
|
# scale consistent reads such as mapreduces, or for coordinating many reads
|
5391
5467
|
# against a consistent snapshot of the data. A timestamp in RFC3339 UTC \"Zulu\"
|
@@ -6260,7 +6336,7 @@ module Google
|
|
6260
6336
|
end
|
6261
6337
|
end
|
6262
6338
|
|
6263
|
-
# The split points of a table
|
6339
|
+
# The split points of a table or an index.
|
6264
6340
|
class SplitPoints
|
6265
6341
|
include Google::Apis::Core::Hashable
|
6266
6342
|
|
@@ -6277,7 +6353,7 @@ module Google
|
|
6277
6353
|
# @return [String]
|
6278
6354
|
attr_accessor :index
|
6279
6355
|
|
6280
|
-
# Required. The list of split keys,
|
6356
|
+
# Required. The list of split keys. In essence, the split boundaries.
|
6281
6357
|
# Corresponds to the JSON property `keys`
|
6282
6358
|
# @return [Array<Google::Apis::SpannerV1::Key>]
|
6283
6359
|
attr_accessor :keys
|
@@ -6494,11 +6570,11 @@ module Google
|
|
6494
6570
|
# to retry. 2. Snapshot read-only. Snapshot read-only transactions provide
|
6495
6571
|
# guaranteed consistency across several reads, but do not allow writes. Snapshot
|
6496
6572
|
# read-only transactions can be configured to read at timestamps in the past, or
|
6497
|
-
# configured to perform a strong read (where Spanner
|
6498
|
-
#
|
6499
|
-
#
|
6500
|
-
#
|
6501
|
-
#
|
6573
|
+
# configured to perform a strong read (where Spanner selects a timestamp such
|
6574
|
+
# that the read is guaranteed to see the effects of all transactions that have
|
6575
|
+
# committed before the start of the read). Snapshot read-only transactions do
|
6576
|
+
# not need to be committed. Queries on change streams must be performed with the
|
6577
|
+
# snapshot read-only transaction mode, specifying a strong read. See
|
6502
6578
|
# TransactionOptions.ReadOnly.strong for more details. 3. Partitioned DML. This
|
6503
6579
|
# type of transaction is used to execute a single Partitioned DML statement.
|
6504
6580
|
# Partitioned DML partitions the key space and runs the DML statement over each
|
@@ -6548,7 +6624,7 @@ module Google
|
|
6548
6624
|
# has no outstanding reads or SQL queries and has not started a read or SQL
|
6549
6625
|
# query within the last 10 seconds. Idle transactions can be aborted by Cloud
|
6550
6626
|
# Spanner so that they don't hold on to locks indefinitely. If an idle
|
6551
|
-
# transaction is aborted, the commit
|
6627
|
+
# transaction is aborted, the commit fails with error `ABORTED`. If this
|
6552
6628
|
# behavior is undesirable, periodically executing a simple SQL query in the
|
6553
6629
|
# transaction (for example, `SELECT 1`) prevents the transaction from becoming
|
6554
6630
|
# idle. Snapshot read-only transactions: Snapshot read-only transactions
|
@@ -6583,8 +6659,8 @@ module Google
|
|
6583
6659
|
# guaranteed to see a consistent prefix of the global transaction history: they
|
6584
6660
|
# observe modifications done by all transactions with a commit timestamp less
|
6585
6661
|
# than or equal to the read timestamp, and observe none of the modifications
|
6586
|
-
# done by transactions with a larger commit timestamp. They
|
6587
|
-
# conflicting transactions that
|
6662
|
+
# done by transactions with a larger commit timestamp. They block until all
|
6663
|
+
# conflicting transactions that can be assigned commit timestamps <= the read
|
6588
6664
|
# timestamp have finished. The timestamp can either be expressed as an absolute
|
6589
6665
|
# Cloud Spanner commit timestamp or a staleness relative to the current time.
|
6590
6666
|
# These modes do not require a "negotiation phase" to pick a timestamp. As a
|
@@ -6606,20 +6682,20 @@ module Google
|
|
6606
6682
|
# staleness reads are usually a little slower than comparable exact staleness
|
6607
6683
|
# reads. However, they are typically able to return fresher results, and are
|
6608
6684
|
# more likely to execute at the closest replica. Because the timestamp
|
6609
|
-
# negotiation requires up-front knowledge of which rows
|
6610
|
-
#
|
6611
|
-
#
|
6612
|
-
#
|
6613
|
-
#
|
6614
|
-
#
|
6615
|
-
#
|
6616
|
-
#
|
6617
|
-
#
|
6618
|
-
#
|
6619
|
-
#
|
6620
|
-
#
|
6621
|
-
#
|
6622
|
-
#
|
6685
|
+
# negotiation requires up-front knowledge of which rows are read, it can only be
|
6686
|
+
# used with single-use read-only transactions. See TransactionOptions.ReadOnly.
|
6687
|
+
# max_staleness and TransactionOptions.ReadOnly.min_read_timestamp. Old read
|
6688
|
+
# timestamps and garbage collection: Cloud Spanner continuously garbage collects
|
6689
|
+
# deleted and overwritten data in the background to reclaim storage space. This
|
6690
|
+
# process is known as "version GC". By default, version GC reclaims versions
|
6691
|
+
# after they are one hour old. Because of this, Cloud Spanner can't perform
|
6692
|
+
# reads at read timestamps more than one hour in the past. This restriction also
|
6693
|
+
# applies to in-progress reads and/or SQL queries whose timestamp become too old
|
6694
|
+
# while executing. Reads and SQL queries with too-old read timestamps fail with
|
6695
|
+
# the error `FAILED_PRECONDITION`. You can configure and extend the `
|
6696
|
+
# VERSION_RETENTION_PERIOD` of a database up to a period as long as one week,
|
6697
|
+
# which allows Cloud Spanner to perform reads up to one week in the past.
|
6698
|
+
# Querying change Streams: A Change Stream is a schema object that can be
|
6623
6699
|
# configured to watch data changes on the entire database, a set of tables, or a
|
6624
6700
|
# set of columns in a database. When a change stream is created, Spanner
|
6625
6701
|
# automatically defines a corresponding SQL Table-Valued Function (TVF) that can
|
@@ -6633,9 +6709,9 @@ module Google
|
|
6633
6709
|
# accessible using the strong read-only timestamp_bound. All other
|
6634
6710
|
# TransactionOptions are invalid for change stream queries. In addition, if
|
6635
6711
|
# TransactionOptions.read_only.return_read_timestamp is set to true, a special
|
6636
|
-
# value of 2^63 - 2
|
6637
|
-
#
|
6638
|
-
#
|
6712
|
+
# value of 2^63 - 2 is returned in the Transaction message that describes the
|
6713
|
+
# transaction, instead of a valid read timestamp. This special value should be
|
6714
|
+
# discarded and not used for any subsequent queries. Please see https://cloud.
|
6639
6715
|
# google.com/spanner/docs/change-streams for more details on how to query the
|
6640
6716
|
# change stream TVFs. Partitioned DML transactions: Partitioned DML transactions
|
6641
6717
|
# are used to execute DML statements with a different execution strategy that
|
@@ -6668,7 +6744,7 @@ module Google
|
|
6668
6744
|
# execution of a single DML statement via ExecuteSql or ExecuteStreamingSql. -
|
6669
6745
|
# If any error is encountered during the execution of the partitioned DML
|
6670
6746
|
# operation (for instance, a UNIQUE INDEX violation, division by zero, or a
|
6671
|
-
# value that
|
6747
|
+
# value that can't be stored due to schema constraints), then the operation is
|
6672
6748
|
# stopped at that point and an error is returned. It is possible that at this
|
6673
6749
|
# point, some partitions have been committed (or even committed multiple times),
|
6674
6750
|
# and other partitions have not been run at all. Given the above, Partitioned
|
@@ -6677,17 +6753,17 @@ module Google
|
|
6677
6753
|
class TransactionOptions
|
6678
6754
|
include Google::Apis::Core::Hashable
|
6679
6755
|
|
6680
|
-
# When `exclude_txn_from_change_streams` is set to `true
|
6681
|
-
#
|
6682
|
-
# allow_txn_exclusion
|
6683
|
-
#
|
6684
|
-
#
|
6685
|
-
#
|
6686
|
-
# exclude_txn_from_change_streams` is set to `false` or not set,
|
6687
|
-
# from this transaction
|
6688
|
-
# columns modified by these transactions. `exclude_txn_from_change_streams`
|
6689
|
-
# only be specified for read-write or partitioned
|
6690
|
-
# the API
|
6756
|
+
# When `exclude_txn_from_change_streams` is set to `true`, it prevents read or
|
6757
|
+
# write transactions from being tracked in change streams. * If the DDL option `
|
6758
|
+
# allow_txn_exclusion` is set to `true`, then the updates made within this
|
6759
|
+
# transaction aren't recorded in the change stream. * If you don't set the DDL
|
6760
|
+
# option `allow_txn_exclusion` or if it's set to `false`, then the updates made
|
6761
|
+
# within this transaction are recorded in the change stream. When `
|
6762
|
+
# exclude_txn_from_change_streams` is set to `false` or not set, modifications
|
6763
|
+
# from this transaction are recorded in all change streams that are tracking
|
6764
|
+
# columns modified by these transactions. The `exclude_txn_from_change_streams`
|
6765
|
+
# option can only be specified for read-write or partitioned DML transactions,
|
6766
|
+
# otherwise the API returns an `INVALID_ARGUMENT` error.
|
6691
6767
|
# Corresponds to the JSON property `excludeTxnFromChangeStreams`
|
6692
6768
|
# @return [Boolean]
|
6693
6769
|
attr_accessor :exclude_txn_from_change_streams
|
@@ -6745,11 +6821,11 @@ module Google
|
|
6745
6821
|
# to retry. 2. Snapshot read-only. Snapshot read-only transactions provide
|
6746
6822
|
# guaranteed consistency across several reads, but do not allow writes. Snapshot
|
6747
6823
|
# read-only transactions can be configured to read at timestamps in the past, or
|
6748
|
-
# configured to perform a strong read (where Spanner
|
6749
|
-
#
|
6750
|
-
#
|
6751
|
-
#
|
6752
|
-
#
|
6824
|
+
# configured to perform a strong read (where Spanner selects a timestamp such
|
6825
|
+
# that the read is guaranteed to see the effects of all transactions that have
|
6826
|
+
# committed before the start of the read). Snapshot read-only transactions do
|
6827
|
+
# not need to be committed. Queries on change streams must be performed with the
|
6828
|
+
# snapshot read-only transaction mode, specifying a strong read. See
|
6753
6829
|
# TransactionOptions.ReadOnly.strong for more details. 3. Partitioned DML. This
|
6754
6830
|
# type of transaction is used to execute a single Partitioned DML statement.
|
6755
6831
|
# Partitioned DML partitions the key space and runs the DML statement over each
|
@@ -6799,7 +6875,7 @@ module Google
|
|
6799
6875
|
# has no outstanding reads or SQL queries and has not started a read or SQL
|
6800
6876
|
# query within the last 10 seconds. Idle transactions can be aborted by Cloud
|
6801
6877
|
# Spanner so that they don't hold on to locks indefinitely. If an idle
|
6802
|
-
# transaction is aborted, the commit
|
6878
|
+
# transaction is aborted, the commit fails with error `ABORTED`. If this
|
6803
6879
|
# behavior is undesirable, periodically executing a simple SQL query in the
|
6804
6880
|
# transaction (for example, `SELECT 1`) prevents the transaction from becoming
|
6805
6881
|
# idle. Snapshot read-only transactions: Snapshot read-only transactions
|
@@ -6834,8 +6910,8 @@ module Google
|
|
6834
6910
|
# guaranteed to see a consistent prefix of the global transaction history: they
|
6835
6911
|
# observe modifications done by all transactions with a commit timestamp less
|
6836
6912
|
# than or equal to the read timestamp, and observe none of the modifications
|
6837
|
-
# done by transactions with a larger commit timestamp. They
|
6838
|
-
# conflicting transactions that
|
6913
|
+
# done by transactions with a larger commit timestamp. They block until all
|
6914
|
+
# conflicting transactions that can be assigned commit timestamps <= the read
|
6839
6915
|
# timestamp have finished. The timestamp can either be expressed as an absolute
|
6840
6916
|
# Cloud Spanner commit timestamp or a staleness relative to the current time.
|
6841
6917
|
# These modes do not require a "negotiation phase" to pick a timestamp. As a
|
@@ -6857,20 +6933,20 @@ module Google
|
|
6857
6933
|
# staleness reads are usually a little slower than comparable exact staleness
|
6858
6934
|
# reads. However, they are typically able to return fresher results, and are
|
6859
6935
|
# more likely to execute at the closest replica. Because the timestamp
|
6860
|
-
# negotiation requires up-front knowledge of which rows
|
6861
|
-
#
|
6862
|
-
#
|
6863
|
-
#
|
6864
|
-
#
|
6865
|
-
#
|
6866
|
-
#
|
6867
|
-
#
|
6868
|
-
#
|
6869
|
-
#
|
6870
|
-
#
|
6871
|
-
#
|
6872
|
-
#
|
6873
|
-
#
|
6936
|
+
# negotiation requires up-front knowledge of which rows are read, it can only be
|
6937
|
+
# used with single-use read-only transactions. See TransactionOptions.ReadOnly.
|
6938
|
+
# max_staleness and TransactionOptions.ReadOnly.min_read_timestamp. Old read
|
6939
|
+
# timestamps and garbage collection: Cloud Spanner continuously garbage collects
|
6940
|
+
# deleted and overwritten data in the background to reclaim storage space. This
|
6941
|
+
# process is known as "version GC". By default, version GC reclaims versions
|
6942
|
+
# after they are one hour old. Because of this, Cloud Spanner can't perform
|
6943
|
+
# reads at read timestamps more than one hour in the past. This restriction also
|
6944
|
+
# applies to in-progress reads and/or SQL queries whose timestamp become too old
|
6945
|
+
# while executing. Reads and SQL queries with too-old read timestamps fail with
|
6946
|
+
# the error `FAILED_PRECONDITION`. You can configure and extend the `
|
6947
|
+
# VERSION_RETENTION_PERIOD` of a database up to a period as long as one week,
|
6948
|
+
# which allows Cloud Spanner to perform reads up to one week in the past.
|
6949
|
+
# Querying change Streams: A Change Stream is a schema object that can be
|
6874
6950
|
# configured to watch data changes on the entire database, a set of tables, or a
|
6875
6951
|
# set of columns in a database. When a change stream is created, Spanner
|
6876
6952
|
# automatically defines a corresponding SQL Table-Valued Function (TVF) that can
|
@@ -6884,9 +6960,9 @@ module Google
|
|
6884
6960
|
# accessible using the strong read-only timestamp_bound. All other
|
6885
6961
|
# TransactionOptions are invalid for change stream queries. In addition, if
|
6886
6962
|
# TransactionOptions.read_only.return_read_timestamp is set to true, a special
|
6887
|
-
# value of 2^63 - 2
|
6888
|
-
#
|
6889
|
-
#
|
6963
|
+
# value of 2^63 - 2 is returned in the Transaction message that describes the
|
6964
|
+
# transaction, instead of a valid read timestamp. This special value should be
|
6965
|
+
# discarded and not used for any subsequent queries. Please see https://cloud.
|
6890
6966
|
# google.com/spanner/docs/change-streams for more details on how to query the
|
6891
6967
|
# change stream TVFs. Partitioned DML transactions: Partitioned DML transactions
|
6892
6968
|
# are used to execute DML statements with a different execution strategy that
|
@@ -6919,7 +6995,7 @@ module Google
|
|
6919
6995
|
# execution of a single DML statement via ExecuteSql or ExecuteStreamingSql. -
|
6920
6996
|
# If any error is encountered during the execution of the partitioned DML
|
6921
6997
|
# operation (for instance, a UNIQUE INDEX violation, division by zero, or a
|
6922
|
-
# value that
|
6998
|
+
# value that can't be stored due to schema constraints), then the operation is
|
6923
6999
|
# stopped at that point and an error is returned. It is possible that at this
|
6924
7000
|
# point, some partitions have been committed (or even committed multiple times),
|
6925
7001
|
# and other partitions have not been run at all. Given the above, Partitioned
|
@@ -6947,11 +7023,11 @@ module Google
|
|
6947
7023
|
# to retry. 2. Snapshot read-only. Snapshot read-only transactions provide
|
6948
7024
|
# guaranteed consistency across several reads, but do not allow writes. Snapshot
|
6949
7025
|
# read-only transactions can be configured to read at timestamps in the past, or
|
6950
|
-
# configured to perform a strong read (where Spanner
|
6951
|
-
#
|
6952
|
-
#
|
6953
|
-
#
|
6954
|
-
#
|
7026
|
+
# configured to perform a strong read (where Spanner selects a timestamp such
|
7027
|
+
# that the read is guaranteed to see the effects of all transactions that have
|
7028
|
+
# committed before the start of the read). Snapshot read-only transactions do
|
7029
|
+
# not need to be committed. Queries on change streams must be performed with the
|
7030
|
+
# snapshot read-only transaction mode, specifying a strong read. See
|
6955
7031
|
# TransactionOptions.ReadOnly.strong for more details. 3. Partitioned DML. This
|
6956
7032
|
# type of transaction is used to execute a single Partitioned DML statement.
|
6957
7033
|
# Partitioned DML partitions the key space and runs the DML statement over each
|
@@ -7001,7 +7077,7 @@ module Google
|
|
7001
7077
|
# has no outstanding reads or SQL queries and has not started a read or SQL
|
7002
7078
|
# query within the last 10 seconds. Idle transactions can be aborted by Cloud
|
7003
7079
|
# Spanner so that they don't hold on to locks indefinitely. If an idle
|
7004
|
-
# transaction is aborted, the commit
|
7080
|
+
# transaction is aborted, the commit fails with error `ABORTED`. If this
|
7005
7081
|
# behavior is undesirable, periodically executing a simple SQL query in the
|
7006
7082
|
# transaction (for example, `SELECT 1`) prevents the transaction from becoming
|
7007
7083
|
# idle. Snapshot read-only transactions: Snapshot read-only transactions
|
@@ -7036,8 +7112,8 @@ module Google
|
|
7036
7112
|
# guaranteed to see a consistent prefix of the global transaction history: they
|
7037
7113
|
# observe modifications done by all transactions with a commit timestamp less
|
7038
7114
|
# than or equal to the read timestamp, and observe none of the modifications
|
7039
|
-
# done by transactions with a larger commit timestamp. They
|
7040
|
-
# conflicting transactions that
|
7115
|
+
# done by transactions with a larger commit timestamp. They block until all
|
7116
|
+
# conflicting transactions that can be assigned commit timestamps <= the read
|
7041
7117
|
# timestamp have finished. The timestamp can either be expressed as an absolute
|
7042
7118
|
# Cloud Spanner commit timestamp or a staleness relative to the current time.
|
7043
7119
|
# These modes do not require a "negotiation phase" to pick a timestamp. As a
|
@@ -7059,20 +7135,20 @@ module Google
|
|
7059
7135
|
# staleness reads are usually a little slower than comparable exact staleness
|
7060
7136
|
# reads. However, they are typically able to return fresher results, and are
|
7061
7137
|
# more likely to execute at the closest replica. Because the timestamp
|
7062
|
-
# negotiation requires up-front knowledge of which rows
|
7063
|
-
#
|
7064
|
-
#
|
7065
|
-
#
|
7066
|
-
#
|
7067
|
-
#
|
7068
|
-
#
|
7069
|
-
#
|
7070
|
-
#
|
7071
|
-
#
|
7072
|
-
#
|
7073
|
-
#
|
7074
|
-
#
|
7075
|
-
#
|
7138
|
+
# negotiation requires up-front knowledge of which rows are read, it can only be
|
7139
|
+
# used with single-use read-only transactions. See TransactionOptions.ReadOnly.
|
7140
|
+
# max_staleness and TransactionOptions.ReadOnly.min_read_timestamp. Old read
|
7141
|
+
# timestamps and garbage collection: Cloud Spanner continuously garbage collects
|
7142
|
+
# deleted and overwritten data in the background to reclaim storage space. This
|
7143
|
+
# process is known as "version GC". By default, version GC reclaims versions
|
7144
|
+
# after they are one hour old. Because of this, Cloud Spanner can't perform
|
7145
|
+
# reads at read timestamps more than one hour in the past. This restriction also
|
7146
|
+
# applies to in-progress reads and/or SQL queries whose timestamp become too old
|
7147
|
+
# while executing. Reads and SQL queries with too-old read timestamps fail with
|
7148
|
+
# the error `FAILED_PRECONDITION`. You can configure and extend the `
|
7149
|
+
# VERSION_RETENTION_PERIOD` of a database up to a period as long as one week,
|
7150
|
+
# which allows Cloud Spanner to perform reads up to one week in the past.
|
7151
|
+
# Querying change Streams: A Change Stream is a schema object that can be
|
7076
7152
|
# configured to watch data changes on the entire database, a set of tables, or a
|
7077
7153
|
# set of columns in a database. When a change stream is created, Spanner
|
7078
7154
|
# automatically defines a corresponding SQL Table-Valued Function (TVF) that can
|
@@ -7086,9 +7162,9 @@ module Google
|
|
7086
7162
|
# accessible using the strong read-only timestamp_bound. All other
|
7087
7163
|
# TransactionOptions are invalid for change stream queries. In addition, if
|
7088
7164
|
# TransactionOptions.read_only.return_read_timestamp is set to true, a special
|
7089
|
-
# value of 2^63 - 2
|
7090
|
-
#
|
7091
|
-
#
|
7165
|
+
# value of 2^63 - 2 is returned in the Transaction message that describes the
|
7166
|
+
# transaction, instead of a valid read timestamp. This special value should be
|
7167
|
+
# discarded and not used for any subsequent queries. Please see https://cloud.
|
7092
7168
|
# google.com/spanner/docs/change-streams for more details on how to query the
|
7093
7169
|
# change stream TVFs. Partitioned DML transactions: Partitioned DML transactions
|
7094
7170
|
# are used to execute DML statements with a different execution strategy that
|
@@ -7121,7 +7197,7 @@ module Google
|
|
7121
7197
|
# execution of a single DML statement via ExecuteSql or ExecuteStreamingSql. -
|
7122
7198
|
# If any error is encountered during the execution of the partitioned DML
|
7123
7199
|
# operation (for instance, a UNIQUE INDEX violation, division by zero, or a
|
7124
|
-
# value that
|
7200
|
+
# value that can't be stored due to schema constraints), then the operation is
|
7125
7201
|
# stopped at that point and an error is returned. It is possible that at this
|
7126
7202
|
# point, some partitions have been committed (or even committed multiple times),
|
7127
7203
|
# and other partitions have not been run at all. Given the above, Partitioned
|
@@ -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.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250523"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class DatabaseMoveConfig
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class DatabaseRole
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -454,6 +460,12 @@ module Google
|
|
454
460
|
include Google::Apis::Core::JsonObjectSupport
|
455
461
|
end
|
456
462
|
|
463
|
+
class InstanceEncryptionConfig
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
457
469
|
class InstanceOperationProgress
|
458
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
471
|
|
@@ -1465,6 +1477,15 @@ module Google
|
|
1465
1477
|
end
|
1466
1478
|
end
|
1467
1479
|
|
1480
|
+
class DatabaseMoveConfig
|
1481
|
+
# @private
|
1482
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1483
|
+
property :database_id, as: 'databaseId'
|
1484
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::SpannerV1::InstanceEncryptionConfig, decorator: Google::Apis::SpannerV1::InstanceEncryptionConfig::Representation
|
1485
|
+
|
1486
|
+
end
|
1487
|
+
end
|
1488
|
+
|
1468
1489
|
class DatabaseRole
|
1469
1490
|
# @private
|
1470
1491
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1754,6 +1775,14 @@ module Google
|
|
1754
1775
|
end
|
1755
1776
|
end
|
1756
1777
|
|
1778
|
+
class InstanceEncryptionConfig
|
1779
|
+
# @private
|
1780
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1781
|
+
property :kms_key_name, as: 'kmsKeyName'
|
1782
|
+
collection :kms_key_names, as: 'kmsKeyNames'
|
1783
|
+
end
|
1784
|
+
end
|
1785
|
+
|
1757
1786
|
class InstanceOperationProgress
|
1758
1787
|
# @private
|
1759
1788
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2029,6 +2058,8 @@ module Google
|
|
2029
2058
|
# @private
|
2030
2059
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2031
2060
|
property :target_config, as: 'targetConfig'
|
2061
|
+
collection :target_database_move_configs, as: 'targetDatabaseMoveConfigs', class: Google::Apis::SpannerV1::DatabaseMoveConfig, decorator: Google::Apis::SpannerV1::DatabaseMoveConfig::Representation
|
2062
|
+
|
2032
2063
|
end
|
2033
2064
|
end
|
2034
2065
|
|
@@ -1734,10 +1734,10 @@ module Google
|
|
1734
1734
|
execute_or_queue_command(command, &block)
|
1735
1735
|
end
|
1736
1736
|
|
1737
|
-
# Adds split points to specified tables
|
1737
|
+
# Adds split points to specified tables and indexes of a database.
|
1738
1738
|
# @param [String] database
|
1739
|
-
# Required. The database on whose tables
|
1740
|
-
# Values are of the form `projects//instances//databases/`.
|
1739
|
+
# Required. The database on whose tables or indexes the split points are to be
|
1740
|
+
# added. Values are of the form `projects//instances//databases/`.
|
1741
1741
|
# @param [Google::Apis::SpannerV1::AddSplitPointsRequest] add_split_points_request_object
|
1742
1742
|
# @param [String] fields
|
1743
1743
|
# 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-spanner_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.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.42.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Spanner API V1
|
79
79
|
test_files: []
|