google-apis-spanner_v1 0.45.0 → 0.47.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: 4e2b58ef928288fd71c819ed53b9067d1c538c97fbaf01523e48861bcb35024e
4
- data.tar.gz: f4044cd1f853073767879aa5077872339d679792410d1ba9dd4526471a4d9acb
3
+ metadata.gz: c725d65abe07f9d113f2430b4bc1ec1c6013af9acaa8fd60972502bf6344f85c
4
+ data.tar.gz: bfe4478c996fc5529d7142a4179a2bfd0eee311f81a7263be83e9bb2557add5c
5
5
  SHA512:
6
- metadata.gz: 135b702bbc2e72e271723cf08bca7f311e413791dcc2fe9c8eb980e762d6421ba82ae26e84f891e0b5368626b4ccf7c1755a076702473eb9380d0d21431d57b1
7
- data.tar.gz: 95c2c508c32ffa88286a3b32aa703c8c8513d83594b3cecaccecbdc139577b3957dad50246f406ba5632d33168df415a8645efdcbba7ecd7cad585d25066f4c6
6
+ metadata.gz: 294b7ea637b5e6e8dc04a47f6a4758182ffc5a1a3fd9cab22e4a4ae11f3e1f3afb0281bacb07c1237a72c8f3d74bff14601c3eb071e83fdb193163797ad093ca
7
+ data.tar.gz: cbe4f0316448b90c89285e3a436a519241995dc7376e2dc8df6be298ab4ecc60bb59f772d166e7d17200daa3d4591fff1f7a368516ee2f2a7cf2ed47d1db5bf3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-spanner_v1
2
2
 
3
+ ### v0.47.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251121
6
+
7
+ ### v0.46.0 (2025-11-16)
8
+
9
+ * Regenerated from discovery document revision 20251031
10
+
3
11
  ### v0.45.0 (2025-10-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20250920
@@ -674,10 +674,11 @@ module Google
674
674
  class BatchCreateSessionsRequest
675
675
  include Google::Apis::Core::Hashable
676
676
 
677
- # Required. The number of sessions to be created in this batch call. The API can
678
- # return fewer than the requested number of sessions. If a specific number of
679
- # sessions are desired, the client can make additional calls to `
680
- # BatchCreateSessions` (adjusting session_count as necessary).
677
+ # Required. The number of sessions to be created in this batch call. At least
678
+ # one session is created. The API can return fewer than the requested number of
679
+ # sessions. If a specific number of sessions are desired, the client can make
680
+ # additional calls to `BatchCreateSessions` (adjusting session_count as
681
+ # necessary).
681
682
  # Corresponds to the JSON property `sessionCount`
682
683
  # @return [Fixnum]
683
684
  attr_accessor :session_count
@@ -1102,6 +1103,19 @@ module Google
1102
1103
  end
1103
1104
  end
1104
1105
 
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
+
1105
1119
  # Metadata for a column.
1106
1120
  class ColumnMetadata
1107
1121
  include Google::Apis::Core::Hashable
@@ -3469,6 +3483,11 @@ module Google
3469
3483
  class InstancePartition
3470
3484
  include Google::Apis::Core::Hashable
3471
3485
 
3486
+ # Autoscaling configuration for an instance.
3487
+ # Corresponds to the JSON property `autoscalingConfig`
3488
+ # @return [Google::Apis::SpannerV1::AutoscalingConfig]
3489
+ attr_accessor :autoscaling_config
3490
+
3472
3491
  # Required. The name of the instance partition's configuration. Values are of
3473
3492
  # the form `projects//instanceConfigs/`. See also InstanceConfig and
3474
3493
  # ListInstanceConfigs.
@@ -3556,6 +3575,7 @@ module Google
3556
3575
 
3557
3576
  # Update properties of this object
3558
3577
  def update!(**args)
3578
+ @autoscaling_config = args[:autoscaling_config] if args.key?(:autoscaling_config)
3559
3579
  @config = args[:config] if args.key?(:config)
3560
3580
  @create_time = args[:create_time] if args.key?(:create_time)
3561
3581
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -4158,6 +4178,13 @@ module Google
4158
4178
  # @return [Array<Google::Apis::SpannerV1::Operation>]
4159
4179
  attr_accessor :operations
4160
4180
 
4181
+ # 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.
4184
+ # Corresponds to the JSON property `unreachable`
4185
+ # @return [Array<String>]
4186
+ attr_accessor :unreachable
4187
+
4161
4188
  def initialize(**args)
4162
4189
  update!(**args)
4163
4190
  end
@@ -4166,6 +4193,7 @@ module Google
4166
4193
  def update!(**args)
4167
4194
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4168
4195
  @operations = args[:operations] if args.key?(:operations)
4196
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
4169
4197
  end
4170
4198
  end
4171
4199
 
@@ -5934,6 +5962,11 @@ module Google
5934
5962
  class RequestOptions
5935
5963
  include Google::Apis::Core::Hashable
5936
5964
 
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
+
5937
5970
  # Priority for the request.
5938
5971
  # Corresponds to the JSON property `priority`
5939
5972
  # @return [String]
@@ -5970,6 +6003,7 @@ module Google
5970
6003
 
5971
6004
  # Update properties of this object
5972
6005
  def update!(**args)
6006
+ @client_context = args[:client_context] if args.key?(:client_context)
5973
6007
  @priority = args[:priority] if args.key?(:priority)
5974
6008
  @request_tag = args[:request_tag] if args.key?(:request_tag)
5975
6009
  @transaction_tag = args[:transaction_tag] if args.key?(:transaction_tag)
@@ -6394,10 +6428,10 @@ module Google
6394
6428
  attr_accessor :labels
6395
6429
 
6396
6430
  # Optional. If `true`, specifies a multiplexed session. Use a multiplexed
6397
- # session for multiple, concurrent read-only operations. Don't use them for read-
6398
- # write transactions, partitioned reads, or partitioned queries. Use `sessions.
6399
- # create` to create multiplexed sessions. Don't use BatchCreateSessions to
6400
- # create a multiplexed session. You can't delete or list multiplexed sessions.
6431
+ # session for multiple, concurrent operations including any combination of read-
6432
+ # only and read-write transactions. Use `sessions.create` to create multiplexed
6433
+ # sessions. Don't use BatchCreateSessions to create a multiplexed session. You
6434
+ # can't delete or list multiplexed sessions.
6401
6435
  # Corresponds to the JSON property `multiplexed`
6402
6436
  # @return [Boolean]
6403
6437
  attr_accessor :multiplexed
@@ -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.45.0"
19
+ GEM_VERSION = "0.47.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 = "20250920"
25
+ REVISION = "20251121"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,12 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class ClientContext
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
175
181
  class ColumnMetadata
176
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
183
 
@@ -1342,6 +1348,12 @@ module Google
1342
1348
  end
1343
1349
  end
1344
1350
 
1351
+ class ClientContext
1352
+ # @private
1353
+ class Representation < Google::Apis::Core::JsonRepresentation
1354
+ end
1355
+ end
1356
+
1345
1357
  class ColumnMetadata
1346
1358
  # @private
1347
1359
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1918,6 +1930,8 @@ module Google
1918
1930
  class InstancePartition
1919
1931
  # @private
1920
1932
  class Representation < Google::Apis::Core::JsonRepresentation
1933
+ property :autoscaling_config, as: 'autoscalingConfig', class: Google::Apis::SpannerV1::AutoscalingConfig, decorator: Google::Apis::SpannerV1::AutoscalingConfig::Representation
1934
+
1921
1935
  property :config, as: 'config'
1922
1936
  property :create_time, as: 'createTime'
1923
1937
  property :display_name, as: 'displayName'
@@ -2106,6 +2120,7 @@ module Google
2106
2120
  property :next_page_token, as: 'nextPageToken'
2107
2121
  collection :operations, as: 'operations', class: Google::Apis::SpannerV1::Operation, decorator: Google::Apis::SpannerV1::Operation::Representation
2108
2122
 
2123
+ collection :unreachable, as: 'unreachable'
2109
2124
  end
2110
2125
  end
2111
2126
 
@@ -2545,6 +2560,8 @@ module Google
2545
2560
  class RequestOptions
2546
2561
  # @private
2547
2562
  class Representation < Google::Apis::Core::JsonRepresentation
2563
+ property :client_context, as: 'clientContext', class: Google::Apis::SpannerV1::ClientContext, decorator: Google::Apis::SpannerV1::ClientContext::Representation
2564
+
2548
2565
  property :priority, as: 'priority'
2549
2566
  property :request_tag, as: 'requestTag'
2550
2567
  property :transaction_tag, as: 'transactionTag'
@@ -458,6 +458,13 @@ module Google
458
458
  # The standard list page size.
459
459
  # @param [String] page_token
460
460
  # The standard list page token.
461
+ # @param [Boolean] return_partial_success
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.
461
468
  # @param [String] fields
462
469
  # Selector specifying which fields to include in a partial response.
463
470
  # @param [String] quota_user
@@ -475,7 +482,7 @@ module Google
475
482
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
476
483
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
477
484
  # @raise [Google::Apis::AuthorizationError] Authorization is required
478
- def list_project_instance_config_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
485
+ def list_project_instance_config_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
479
486
  command = make_simple_command(:get, 'v1/{+name}', options)
480
487
  command.response_representation = Google::Apis::SpannerV1::ListOperationsResponse::Representation
481
488
  command.response_class = Google::Apis::SpannerV1::ListOperationsResponse
@@ -483,6 +490,7 @@ module Google
483
490
  command.query['filter'] = filter unless filter.nil?
484
491
  command.query['pageSize'] = page_size unless page_size.nil?
485
492
  command.query['pageToken'] = page_token unless page_token.nil?
493
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
486
494
  command.query['fields'] = fields unless fields.nil?
487
495
  command.query['quotaUser'] = quota_user unless quota_user.nil?
488
496
  execute_or_queue_command(command, &block)
@@ -599,6 +607,13 @@ module Google
599
607
  # The standard list page size.
600
608
  # @param [String] page_token
601
609
  # The standard list page token.
610
+ # @param [Boolean] return_partial_success
611
+ # 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.
602
617
  # @param [String] fields
603
618
  # Selector specifying which fields to include in a partial response.
604
619
  # @param [String] quota_user
@@ -616,7 +631,7 @@ module Google
616
631
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
617
632
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
618
633
  # @raise [Google::Apis::AuthorizationError] Authorization is required
619
- def list_project_instance_config_ssd_cach_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
634
+ def list_project_instance_config_ssd_cach_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
620
635
  command = make_simple_command(:get, 'v1/{+name}', options)
621
636
  command.response_representation = Google::Apis::SpannerV1::ListOperationsResponse::Representation
622
637
  command.response_class = Google::Apis::SpannerV1::ListOperationsResponse
@@ -624,6 +639,7 @@ module Google
624
639
  command.query['filter'] = filter unless filter.nil?
625
640
  command.query['pageSize'] = page_size unless page_size.nil?
626
641
  command.query['pageToken'] = page_token unless page_token.nil?
642
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
627
643
  command.query['fields'] = fields unless fields.nil?
628
644
  command.query['quotaUser'] = quota_user unless quota_user.nil?
629
645
  execute_or_queue_command(command, &block)
@@ -1639,6 +1655,13 @@ module Google
1639
1655
  # The standard list page size.
1640
1656
  # @param [String] page_token
1641
1657
  # The standard list page token.
1658
+ # @param [Boolean] return_partial_success
1659
+ # 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.
1642
1665
  # @param [String] fields
1643
1666
  # Selector specifying which fields to include in a partial response.
1644
1667
  # @param [String] quota_user
@@ -1656,7 +1679,7 @@ module Google
1656
1679
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1657
1680
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1658
1681
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1659
- def list_project_instance_backup_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1682
+ def list_project_instance_backup_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1660
1683
  command = make_simple_command(:get, 'v1/{+name}', options)
1661
1684
  command.response_representation = Google::Apis::SpannerV1::ListOperationsResponse::Representation
1662
1685
  command.response_class = Google::Apis::SpannerV1::ListOperationsResponse
@@ -1664,6 +1687,7 @@ module Google
1664
1687
  command.query['filter'] = filter unless filter.nil?
1665
1688
  command.query['pageSize'] = page_size unless page_size.nil?
1666
1689
  command.query['pageToken'] = page_token unless page_token.nil?
1690
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1667
1691
  command.query['fields'] = fields unless fields.nil?
1668
1692
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1669
1693
  execute_or_queue_command(command, &block)
@@ -2788,6 +2812,13 @@ module Google
2788
2812
  # The standard list page size.
2789
2813
  # @param [String] page_token
2790
2814
  # The standard list page token.
2815
+ # @param [Boolean] return_partial_success
2816
+ # 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.
2791
2822
  # @param [String] fields
2792
2823
  # Selector specifying which fields to include in a partial response.
2793
2824
  # @param [String] quota_user
@@ -2805,7 +2836,7 @@ module Google
2805
2836
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2806
2837
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2807
2838
  # @raise [Google::Apis::AuthorizationError] Authorization is required
2808
- def list_project_instance_database_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2839
+ def list_project_instance_database_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
2809
2840
  command = make_simple_command(:get, 'v1/{+name}', options)
2810
2841
  command.response_representation = Google::Apis::SpannerV1::ListOperationsResponse::Representation
2811
2842
  command.response_class = Google::Apis::SpannerV1::ListOperationsResponse
@@ -2813,6 +2844,7 @@ module Google
2813
2844
  command.query['filter'] = filter unless filter.nil?
2814
2845
  command.query['pageSize'] = page_size unless page_size.nil?
2815
2846
  command.query['pageToken'] = page_token unless page_token.nil?
2847
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
2816
2848
  command.query['fields'] = fields unless fields.nil?
2817
2849
  command.query['quotaUser'] = quota_user unless quota_user.nil?
2818
2850
  execute_or_queue_command(command, &block)
@@ -3926,6 +3958,13 @@ module Google
3926
3958
  # The standard list page size.
3927
3959
  # @param [String] page_token
3928
3960
  # The standard list page token.
3961
+ # @param [Boolean] return_partial_success
3962
+ # 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.
3929
3968
  # @param [String] fields
3930
3969
  # Selector specifying which fields to include in a partial response.
3931
3970
  # @param [String] quota_user
@@ -3943,7 +3982,7 @@ module Google
3943
3982
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3944
3983
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3945
3984
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3946
- def list_project_instance_instance_partition_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3985
+ def list_project_instance_instance_partition_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
3947
3986
  command = make_simple_command(:get, 'v1/{+name}', options)
3948
3987
  command.response_representation = Google::Apis::SpannerV1::ListOperationsResponse::Representation
3949
3988
  command.response_class = Google::Apis::SpannerV1::ListOperationsResponse
@@ -3951,6 +3990,7 @@ module Google
3951
3990
  command.query['filter'] = filter unless filter.nil?
3952
3991
  command.query['pageSize'] = page_size unless page_size.nil?
3953
3992
  command.query['pageToken'] = page_token unless page_token.nil?
3993
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3954
3994
  command.query['fields'] = fields unless fields.nil?
3955
3995
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3956
3996
  execute_or_queue_command(command, &block)
@@ -4067,6 +4107,13 @@ module Google
4067
4107
  # The standard list page size.
4068
4108
  # @param [String] page_token
4069
4109
  # The standard list page token.
4110
+ # @param [Boolean] return_partial_success
4111
+ # 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.
4070
4117
  # @param [String] fields
4071
4118
  # Selector specifying which fields to include in a partial response.
4072
4119
  # @param [String] quota_user
@@ -4084,7 +4131,7 @@ module Google
4084
4131
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4085
4132
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4086
4133
  # @raise [Google::Apis::AuthorizationError] Authorization is required
4087
- def list_project_instance_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
4134
+ def list_project_instance_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
4088
4135
  command = make_simple_command(:get, 'v1/{+name}', options)
4089
4136
  command.response_representation = Google::Apis::SpannerV1::ListOperationsResponse::Representation
4090
4137
  command.response_class = Google::Apis::SpannerV1::ListOperationsResponse
@@ -4092,6 +4139,7 @@ module Google
4092
4139
  command.query['filter'] = filter unless filter.nil?
4093
4140
  command.query['pageSize'] = page_size unless page_size.nil?
4094
4141
  command.query['pageToken'] = page_token unless page_token.nil?
4142
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
4095
4143
  command.query['fields'] = fields unless fields.nil?
4096
4144
  command.query['quotaUser'] = quota_user unless quota_user.nil?
4097
4145
  execute_or_queue_command(command, &block)
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.45.0
4
+ version: 0.47.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.45.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-spanner_v1/v0.47.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: