google-apis-spanner_v1 0.47.0 → 0.48.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: c725d65abe07f9d113f2430b4bc1ec1c6013af9acaa8fd60972502bf6344f85c
4
- data.tar.gz: bfe4478c996fc5529d7142a4179a2bfd0eee311f81a7263be83e9bb2557add5c
3
+ metadata.gz: 6bbda2ff9f73d1f56321ad14b4ce5276525742526c2c468ed627c47ed0b330dc
4
+ data.tar.gz: 4a7c2f06770dae3cce327925a0f5cff0db3e50dc26613298516d9272667f1719
5
5
  SHA512:
6
- metadata.gz: 294b7ea637b5e6e8dc04a47f6a4758182ffc5a1a3fd9cab22e4a4ae11f3e1f3afb0281bacb07c1237a72c8f3d74bff14601c3eb071e83fdb193163797ad093ca
7
- data.tar.gz: cbe4f0316448b90c89285e3a436a519241995dc7376e2dc8df6be298ab4ecc60bb59f772d166e7d17200daa3d4591fff1f7a368516ee2f2a7cf2ed47d1db5bf3
6
+ metadata.gz: 84d1fe72e97259f8ca2519b37073a7b626f3d4364f4e3039271cd3a8f4ccdef6893ed7cb2d51aae58518ee4c29f7747055be18d07095c0f593f1c503228c0376
7
+ data.tar.gz: 61ad1941dc5637f5c2ce957168bd9f7ddd4fab7968a9ae7b502f8a660980c42adf3cf66638f63f599fea8bbba7240ef4ae6861d6e7e20f6aedbbae0f85e27444
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-spanner_v1
2
2
 
3
+ ### v0.48.0 (2025-12-21)
4
+
5
+ * Regenerated from discovery document revision 20251205
6
+
3
7
  ### v0.47.0 (2025-12-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20251121
@@ -22,6 +22,41 @@ module Google
22
22
  module Apis
23
23
  module SpannerV1
24
24
 
25
+ # Arguments to ack operations.
26
+ class Ack
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # By default, an attempt to ack a message that does not exist will fail with a `
30
+ # NOT_FOUND` error. With `ignore_not_found` set to true, the ack will succeed
31
+ # even if the message does not exist. This is useful for unconditionally acking
32
+ # a message, even if it is missing or has already been acked.
33
+ # Corresponds to the JSON property `ignoreNotFound`
34
+ # @return [Boolean]
35
+ attr_accessor :ignore_not_found
36
+ alias_method :ignore_not_found?, :ignore_not_found
37
+
38
+ # Required. The primary key of the message to be acked.
39
+ # Corresponds to the JSON property `key`
40
+ # @return [Array<Object>]
41
+ attr_accessor :key
42
+
43
+ # Required. The queue where the message to be acked is stored.
44
+ # Corresponds to the JSON property `queue`
45
+ # @return [String]
46
+ attr_accessor :queue
47
+
48
+ def initialize(**args)
49
+ update!(**args)
50
+ end
51
+
52
+ # Update properties of this object
53
+ def update!(**args)
54
+ @ignore_not_found = args[:ignore_not_found] if args.key?(:ignore_not_found)
55
+ @key = args[:key] if args.key?(:key)
56
+ @queue = args[:queue] if args.key?(:queue)
57
+ end
58
+ end
59
+
25
60
  # Message sent by the client to the adapter.
26
61
  class AdaptMessageRequest
27
62
  include Google::Apis::Core::Hashable
@@ -1103,19 +1138,6 @@ module Google
1103
1138
  end
1104
1139
  end
1105
1140
 
1106
- # Container for various pieces of client-owned context attached to a request.
1107
- class ClientContext
1108
- include Google::Apis::Core::Hashable
1109
-
1110
- def initialize(**args)
1111
- update!(**args)
1112
- end
1113
-
1114
- # Update properties of this object
1115
- def update!(**args)
1116
- end
1117
- end
1118
-
1119
1141
  # Metadata for a column.
1120
1142
  class ColumnMetadata
1121
1143
  include Google::Apis::Core::Hashable
@@ -1289,6 +1311,46 @@ module Google
1289
1311
  end
1290
1312
  end
1291
1313
 
1314
+ # Metadata type for the long-running operation returned by `CALL compact_all()`,
1315
+ # which can be executed using ExecuteSql or ExecuteStreamingSql APIs.
1316
+ class CompactDatabaseMetadata
1317
+ include Google::Apis::Core::Hashable
1318
+
1319
+ # Output only. The time at which cancellation of this operation was received.
1320
+ # Operations.CancelOperation starts asynchronous cancellation on a long-running
1321
+ # operation. The server makes a best effort to cancel the operation, but success
1322
+ # is not guaranteed. Clients can use Operations.GetOperation or other methods to
1323
+ # check whether the cancellation succeeded or whether the operation completed
1324
+ # despite cancellation. On successful cancellation, the operation is not deleted;
1325
+ # instead, it becomes an operation with an Operation.error value with a google.
1326
+ # rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
1327
+ # Corresponds to the JSON property `cancelTime`
1328
+ # @return [String]
1329
+ attr_accessor :cancel_time
1330
+
1331
+ # Output only. The database being compacted.
1332
+ # Corresponds to the JSON property `database`
1333
+ # @return [String]
1334
+ attr_accessor :database
1335
+
1336
+ # Encapsulates progress related information for a Cloud Spanner long running
1337
+ # operation.
1338
+ # Corresponds to the JSON property `progress`
1339
+ # @return [Google::Apis::SpannerV1::OperationProgress]
1340
+ attr_accessor :progress
1341
+
1342
+ def initialize(**args)
1343
+ update!(**args)
1344
+ end
1345
+
1346
+ # Update properties of this object
1347
+ def update!(**args)
1348
+ @cancel_time = args[:cancel_time] if args.key?(:cancel_time)
1349
+ @database = args[:database] if args.key?(:database)
1350
+ @progress = args[:progress] if args.key?(:progress)
1351
+ end
1352
+ end
1353
+
1292
1354
  # A message representing context for a KeyRangeInfo, including a label, value,
1293
1355
  # unit, and severity.
1294
1356
  class ContextValue
@@ -4179,8 +4241,9 @@ module Google
4179
4241
  attr_accessor :operations
4180
4242
 
4181
4243
  # Unordered list. Unreachable resources. Populated when the request sets `
4182
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
4183
- # when attempting to list all resources across all supported locations.
4244
+ # ListOperationsRequest.return_partial_success` and reads across collections.
4245
+ # For example, when attempting to list all resources across all supported
4246
+ # locations.
4184
4247
  # Corresponds to the JSON property `unreachable`
4185
4248
  # @return [Array<String>]
4186
4249
  attr_accessor :unreachable
@@ -4597,6 +4660,11 @@ module Google
4597
4660
  class Mutation
4598
4661
  include Google::Apis::Core::Hashable
4599
4662
 
4663
+ # Arguments to ack operations.
4664
+ # Corresponds to the JSON property `ack`
4665
+ # @return [Google::Apis::SpannerV1::Ack]
4666
+ attr_accessor :ack
4667
+
4600
4668
  # Arguments to delete operations.
4601
4669
  # Corresponds to the JSON property `delete`
4602
4670
  # @return [Google::Apis::SpannerV1::Delete]
@@ -4617,6 +4685,11 @@ module Google
4617
4685
  # @return [Google::Apis::SpannerV1::Write]
4618
4686
  attr_accessor :replace
4619
4687
 
4688
+ # Arguments to send operations.
4689
+ # Corresponds to the JSON property `send`
4690
+ # @return [Google::Apis::SpannerV1::SendProp]
4691
+ attr_accessor :send_prop
4692
+
4620
4693
  # Arguments to insert, update, insert_or_update, and replace operations.
4621
4694
  # Corresponds to the JSON property `update`
4622
4695
  # @return [Google::Apis::SpannerV1::Write]
@@ -4628,10 +4701,12 @@ module Google
4628
4701
 
4629
4702
  # Update properties of this object
4630
4703
  def update!(**args)
4704
+ @ack = args[:ack] if args.key?(:ack)
4631
4705
  @delete = args[:delete] if args.key?(:delete)
4632
4706
  @insert = args[:insert] if args.key?(:insert)
4633
4707
  @insert_or_update = args[:insert_or_update] if args.key?(:insert_or_update)
4634
4708
  @replace = args[:replace] if args.key?(:replace)
4709
+ @send_prop = args[:send_prop] if args.key?(:send_prop)
4635
4710
  @update = args[:update] if args.key?(:update)
4636
4711
  end
4637
4712
  end
@@ -5962,11 +6037,6 @@ module Google
5962
6037
  class RequestOptions
5963
6038
  include Google::Apis::Core::Hashable
5964
6039
 
5965
- # Container for various pieces of client-owned context attached to a request.
5966
- # Corresponds to the JSON property `clientContext`
5967
- # @return [Google::Apis::SpannerV1::ClientContext]
5968
- attr_accessor :client_context
5969
-
5970
6040
  # Priority for the request.
5971
6041
  # Corresponds to the JSON property `priority`
5972
6042
  # @return [String]
@@ -6003,7 +6073,6 @@ module Google
6003
6073
 
6004
6074
  # Update properties of this object
6005
6075
  def update!(**args)
6006
- @client_context = args[:client_context] if args.key?(:client_context)
6007
6076
  @priority = args[:priority] if args.key?(:priority)
6008
6077
  @request_tag = args[:request_tag] if args.key?(:request_tag)
6009
6078
  @transaction_tag = args[:transaction_tag] if args.key?(:transaction_tag)
@@ -6397,6 +6466,46 @@ module Google
6397
6466
  end
6398
6467
  end
6399
6468
 
6469
+ # Arguments to send operations.
6470
+ class SendProp
6471
+ include Google::Apis::Core::Hashable
6472
+
6473
+ # The time at which Spanner will begin attempting to deliver the message. If `
6474
+ # deliver_time` is not set, Spanner will deliver the message immediately. If `
6475
+ # deliver_time` is in the past, Spanner will replace it with a value closer to
6476
+ # the current time.
6477
+ # Corresponds to the JSON property `deliverTime`
6478
+ # @return [String]
6479
+ attr_accessor :deliver_time
6480
+
6481
+ # Required. The primary key of the message to be sent.
6482
+ # Corresponds to the JSON property `key`
6483
+ # @return [Array<Object>]
6484
+ attr_accessor :key
6485
+
6486
+ # The payload of the message.
6487
+ # Corresponds to the JSON property `payload`
6488
+ # @return [Object]
6489
+ attr_accessor :payload
6490
+
6491
+ # Required. The queue to which the message will be sent.
6492
+ # Corresponds to the JSON property `queue`
6493
+ # @return [String]
6494
+ attr_accessor :queue
6495
+
6496
+ def initialize(**args)
6497
+ update!(**args)
6498
+ end
6499
+
6500
+ # Update properties of this object
6501
+ def update!(**args)
6502
+ @deliver_time = args[:deliver_time] if args.key?(:deliver_time)
6503
+ @key = args[:key] if args.key?(:key)
6504
+ @payload = args[:payload] if args.key?(:payload)
6505
+ @queue = args[:queue] if args.key?(:queue)
6506
+ end
6507
+ end
6508
+
6400
6509
  # A session in the Cloud Spanner API.
6401
6510
  class Session
6402
6511
  include Google::Apis::Core::Hashable
@@ -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.47.0"
19
+ GEM_VERSION = "0.48.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 = "20251121"
25
+ REVISION = "20251205"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module SpannerV1
24
24
 
25
+ class Ack
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AdaptMessageRequest
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -172,31 +178,31 @@ module Google
172
178
  include Google::Apis::Core::JsonObjectSupport
173
179
  end
174
180
 
175
- class ClientContext
181
+ class ColumnMetadata
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
178
184
  include Google::Apis::Core::JsonObjectSupport
179
185
  end
180
186
 
181
- class ColumnMetadata
187
+ class CommitRequest
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
184
190
  include Google::Apis::Core::JsonObjectSupport
185
191
  end
186
192
 
187
- class CommitRequest
193
+ class CommitResponse
188
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
195
 
190
196
  include Google::Apis::Core::JsonObjectSupport
191
197
  end
192
198
 
193
- class CommitResponse
199
+ class CommitStats
194
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
201
 
196
202
  include Google::Apis::Core::JsonObjectSupport
197
203
  end
198
204
 
199
- class CommitStats
205
+ class CompactDatabaseMetadata
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
202
208
  include Google::Apis::Core::JsonObjectSupport
@@ -928,6 +934,12 @@ module Google
928
934
  include Google::Apis::Core::JsonObjectSupport
929
935
  end
930
936
 
937
+ class SendProp
938
+ class Representation < Google::Apis::Core::JsonRepresentation; end
939
+
940
+ include Google::Apis::Core::JsonObjectSupport
941
+ end
942
+
931
943
  class Session
932
944
  class Representation < Google::Apis::Core::JsonRepresentation; end
933
945
 
@@ -1084,6 +1096,15 @@ module Google
1084
1096
  include Google::Apis::Core::JsonObjectSupport
1085
1097
  end
1086
1098
 
1099
+ class Ack
1100
+ # @private
1101
+ class Representation < Google::Apis::Core::JsonRepresentation
1102
+ property :ignore_not_found, as: 'ignoreNotFound'
1103
+ collection :key, as: 'key'
1104
+ property :queue, as: 'queue'
1105
+ end
1106
+ end
1107
+
1087
1108
  class AdaptMessageRequest
1088
1109
  # @private
1089
1110
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1348,12 +1369,6 @@ module Google
1348
1369
  end
1349
1370
  end
1350
1371
 
1351
- class ClientContext
1352
- # @private
1353
- class Representation < Google::Apis::Core::JsonRepresentation
1354
- end
1355
- end
1356
-
1357
1372
  class ColumnMetadata
1358
1373
  # @private
1359
1374
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1401,6 +1416,16 @@ module Google
1401
1416
  end
1402
1417
  end
1403
1418
 
1419
+ class CompactDatabaseMetadata
1420
+ # @private
1421
+ class Representation < Google::Apis::Core::JsonRepresentation
1422
+ property :cancel_time, as: 'cancelTime'
1423
+ property :database, as: 'database'
1424
+ property :progress, as: 'progress', class: Google::Apis::SpannerV1::OperationProgress, decorator: Google::Apis::SpannerV1::OperationProgress::Representation
1425
+
1426
+ end
1427
+ end
1428
+
1404
1429
  class ContextValue
1405
1430
  # @private
1406
1431
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2246,6 +2271,8 @@ module Google
2246
2271
  class Mutation
2247
2272
  # @private
2248
2273
  class Representation < Google::Apis::Core::JsonRepresentation
2274
+ property :ack, as: 'ack', class: Google::Apis::SpannerV1::Ack, decorator: Google::Apis::SpannerV1::Ack::Representation
2275
+
2249
2276
  property :delete, as: 'delete', class: Google::Apis::SpannerV1::Delete, decorator: Google::Apis::SpannerV1::Delete::Representation
2250
2277
 
2251
2278
  property :insert, as: 'insert', class: Google::Apis::SpannerV1::Write, decorator: Google::Apis::SpannerV1::Write::Representation
@@ -2254,6 +2281,8 @@ module Google
2254
2281
 
2255
2282
  property :replace, as: 'replace', class: Google::Apis::SpannerV1::Write, decorator: Google::Apis::SpannerV1::Write::Representation
2256
2283
 
2284
+ property :send_prop, as: 'send', class: Google::Apis::SpannerV1::SendProp, decorator: Google::Apis::SpannerV1::SendProp::Representation
2285
+
2257
2286
  property :update, as: 'update', class: Google::Apis::SpannerV1::Write, decorator: Google::Apis::SpannerV1::Write::Representation
2258
2287
 
2259
2288
  end
@@ -2560,8 +2589,6 @@ module Google
2560
2589
  class RequestOptions
2561
2590
  # @private
2562
2591
  class Representation < Google::Apis::Core::JsonRepresentation
2563
- property :client_context, as: 'clientContext', class: Google::Apis::SpannerV1::ClientContext, decorator: Google::Apis::SpannerV1::ClientContext::Representation
2564
-
2565
2592
  property :priority, as: 'priority'
2566
2593
  property :request_tag, as: 'requestTag'
2567
2594
  property :transaction_tag, as: 'transactionTag'
@@ -2679,6 +2706,16 @@ module Google
2679
2706
  end
2680
2707
  end
2681
2708
 
2709
+ class SendProp
2710
+ # @private
2711
+ class Representation < Google::Apis::Core::JsonRepresentation
2712
+ property :deliver_time, as: 'deliverTime'
2713
+ collection :key, as: 'key'
2714
+ property :payload, as: 'payload'
2715
+ property :queue, as: 'queue'
2716
+ end
2717
+ end
2718
+
2682
2719
  class Session
2683
2720
  # @private
2684
2721
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -460,11 +460,12 @@ module Google
460
460
  # The standard list page token.
461
461
  # @param [Boolean] return_partial_success
462
462
  # When set to `true`, operations that are reachable are returned as normal, and
463
- # those that are unreachable are returned in the [ListOperationsResponse.
464
- # unreachable] field. This can only be `true` when reading across collections e.
465
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
466
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
467
- # explicitly documented otherwise in service or product specific documentation.
463
+ # those that are unreachable are returned in the ListOperationsResponse.
464
+ # unreachable field. This can only be `true` when reading across collections.
465
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
466
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
467
+ # if set unless explicitly documented otherwise in service or product specific
468
+ # documentation.
468
469
  # @param [String] fields
469
470
  # Selector specifying which fields to include in a partial response.
470
471
  # @param [String] quota_user
@@ -609,11 +610,12 @@ module Google
609
610
  # The standard list page token.
610
611
  # @param [Boolean] return_partial_success
611
612
  # When set to `true`, operations that are reachable are returned as normal, and
612
- # those that are unreachable are returned in the [ListOperationsResponse.
613
- # unreachable] field. This can only be `true` when reading across collections e.
614
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
615
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
616
- # explicitly documented otherwise in service or product specific documentation.
613
+ # those that are unreachable are returned in the ListOperationsResponse.
614
+ # unreachable field. This can only be `true` when reading across collections.
615
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
616
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
617
+ # if set unless explicitly documented otherwise in service or product specific
618
+ # documentation.
617
619
  # @param [String] fields
618
620
  # Selector specifying which fields to include in a partial response.
619
621
  # @param [String] quota_user
@@ -1657,11 +1659,12 @@ module Google
1657
1659
  # The standard list page token.
1658
1660
  # @param [Boolean] return_partial_success
1659
1661
  # When set to `true`, operations that are reachable are returned as normal, and
1660
- # those that are unreachable are returned in the [ListOperationsResponse.
1661
- # unreachable] field. This can only be `true` when reading across collections e.
1662
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1663
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1664
- # explicitly documented otherwise in service or product specific documentation.
1662
+ # those that are unreachable are returned in the ListOperationsResponse.
1663
+ # unreachable field. This can only be `true` when reading across collections.
1664
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1665
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1666
+ # if set unless explicitly documented otherwise in service or product specific
1667
+ # documentation.
1665
1668
  # @param [String] fields
1666
1669
  # Selector specifying which fields to include in a partial response.
1667
1670
  # @param [String] quota_user
@@ -2814,11 +2817,12 @@ module Google
2814
2817
  # The standard list page token.
2815
2818
  # @param [Boolean] return_partial_success
2816
2819
  # When set to `true`, operations that are reachable are returned as normal, and
2817
- # those that are unreachable are returned in the [ListOperationsResponse.
2818
- # unreachable] field. This can only be `true` when reading across collections e.
2819
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
2820
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
2821
- # explicitly documented otherwise in service or product specific documentation.
2820
+ # those that are unreachable are returned in the ListOperationsResponse.
2821
+ # unreachable field. This can only be `true` when reading across collections.
2822
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
2823
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
2824
+ # if set unless explicitly documented otherwise in service or product specific
2825
+ # documentation.
2822
2826
  # @param [String] fields
2823
2827
  # Selector specifying which fields to include in a partial response.
2824
2828
  # @param [String] quota_user
@@ -3960,11 +3964,12 @@ module Google
3960
3964
  # The standard list page token.
3961
3965
  # @param [Boolean] return_partial_success
3962
3966
  # When set to `true`, operations that are reachable are returned as normal, and
3963
- # those that are unreachable are returned in the [ListOperationsResponse.
3964
- # unreachable] field. This can only be `true` when reading across collections e.
3965
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3966
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3967
- # explicitly documented otherwise in service or product specific documentation.
3967
+ # those that are unreachable are returned in the ListOperationsResponse.
3968
+ # unreachable field. This can only be `true` when reading across collections.
3969
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
3970
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
3971
+ # if set unless explicitly documented otherwise in service or product specific
3972
+ # documentation.
3968
3973
  # @param [String] fields
3969
3974
  # Selector specifying which fields to include in a partial response.
3970
3975
  # @param [String] quota_user
@@ -4109,11 +4114,12 @@ module Google
4109
4114
  # The standard list page token.
4110
4115
  # @param [Boolean] return_partial_success
4111
4116
  # When set to `true`, operations that are reachable are returned as normal, and
4112
- # those that are unreachable are returned in the [ListOperationsResponse.
4113
- # unreachable] field. This can only be `true` when reading across collections e.
4114
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
4115
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
4116
- # explicitly documented otherwise in service or product specific documentation.
4117
+ # those that are unreachable are returned in the ListOperationsResponse.
4118
+ # unreachable field. This can only be `true` when reading across collections.
4119
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
4120
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
4121
+ # if set unless explicitly documented otherwise in service or product specific
4122
+ # documentation.
4117
4123
  # @param [String] fields
4118
4124
  # Selector specifying which fields to include in a partial response.
4119
4125
  # @param [String] quota_user
@@ -36,7 +36,7 @@ module Google
36
36
  # Administer your Spanner databases
37
37
  AUTH_SPANNER_ADMIN = 'https://www.googleapis.com/auth/spanner.admin'
38
38
 
39
- # View and manage the contents of your Spanner databases
39
+ # See, edit, configure, and delete your Google Cloud Spanner data and see the email address for your Google Account
40
40
  AUTH_SPANNER_DATA = 'https://www.googleapis.com/auth/spanner.data'
41
41
  end
42
42
  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.47.0
4
+ version: 0.48.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.47.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-spanner_v1/v0.48.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: