google-apis-spanner_v1 0.46.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c725d65abe07f9d113f2430b4bc1ec1c6013af9acaa8fd60972502bf6344f85c
|
|
4
|
+
data.tar.gz: bfe4478c996fc5529d7142a4179a2bfd0eee311f81a7263be83e9bb2557add5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 294b7ea637b5e6e8dc04a47f6a4758182ffc5a1a3fd9cab22e4a4ae11f3e1f3afb0281bacb07c1237a72c8f3d74bff14601c3eb071e83fdb193163797ad093ca
|
|
7
|
+
data.tar.gz: cbe4f0316448b90c89285e3a436a519241995dc7376e2dc8df6be298ab4ecc60bb59f772d166e7d17200daa3d4591fff1f7a368516ee2f2a7cf2ed47d1db5bf3
|
data/CHANGELOG.md
CHANGED
|
@@ -1103,6 +1103,19 @@ module Google
|
|
|
1103
1103
|
end
|
|
1104
1104
|
end
|
|
1105
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
|
+
|
|
1106
1119
|
# Metadata for a column.
|
|
1107
1120
|
class ColumnMetadata
|
|
1108
1121
|
include Google::Apis::Core::Hashable
|
|
@@ -5949,6 +5962,11 @@ module Google
|
|
|
5949
5962
|
class RequestOptions
|
|
5950
5963
|
include Google::Apis::Core::Hashable
|
|
5951
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
|
+
|
|
5952
5970
|
# Priority for the request.
|
|
5953
5971
|
# Corresponds to the JSON property `priority`
|
|
5954
5972
|
# @return [String]
|
|
@@ -5985,6 +6003,7 @@ module Google
|
|
|
5985
6003
|
|
|
5986
6004
|
# Update properties of this object
|
|
5987
6005
|
def update!(**args)
|
|
6006
|
+
@client_context = args[:client_context] if args.key?(:client_context)
|
|
5988
6007
|
@priority = args[:priority] if args.key?(:priority)
|
|
5989
6008
|
@request_tag = args[:request_tag] if args.key?(:request_tag)
|
|
5990
6009
|
@transaction_tag = args[:transaction_tag] if args.key?(:transaction_tag)
|
|
@@ -6409,10 +6428,10 @@ module Google
|
|
|
6409
6428
|
attr_accessor :labels
|
|
6410
6429
|
|
|
6411
6430
|
# Optional. If `true`, specifies a multiplexed session. Use a multiplexed
|
|
6412
|
-
# session for multiple, concurrent
|
|
6413
|
-
# write transactions
|
|
6414
|
-
#
|
|
6415
|
-
#
|
|
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.
|
|
6416
6435
|
# Corresponds to the JSON property `multiplexed`
|
|
6417
6436
|
# @return [Boolean]
|
|
6418
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.
|
|
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 = "
|
|
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
|
|
@@ -2548,6 +2560,8 @@ module Google
|
|
|
2548
2560
|
class RequestOptions
|
|
2549
2561
|
# @private
|
|
2550
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
|
+
|
|
2551
2565
|
property :priority, as: 'priority'
|
|
2552
2566
|
property :request_tag, as: 'requestTag'
|
|
2553
2567
|
property :transaction_tag, as: 'transactionTag'
|
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.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.
|
|
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:
|