aws-sdk-dynamodbstreams 1.62.0 → 1.63.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodbstreams/client.rb +19 -2
- data/lib/aws-sdk-dynamodbstreams.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 741f5109f45aa059a92f66859583cf8e15f9592bd782cc88be021ae63b7d8c9b
|
4
|
+
data.tar.gz: ae39e44ec8b07c37d5f926f8efabe80cb801c4d37c948d74a1db7357d19ea269
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14d9e424eb5f46553d4daed1d1f325dbd64c175ef26832c0b72be52e4bab9ef2b3ea2ae455905bc9f7cbc1e8092c98382b8b096d6f8f58a04b07accbeb8dd9d2
|
7
|
+
data.tar.gz: 64435455de2339b4fda4096dde228f2a804eda845456546becce2f449ca4e164f44b3af638a91d8ab840a50f95c0dc9a14a3db6554788d5f7b559301c8d43f00
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.63.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
37
38
|
require 'aws-sdk-dynamodbstreams/plugins/simple_attributes.rb'
|
@@ -84,6 +85,7 @@ module Aws::DynamoDBStreams
|
|
84
85
|
add_plugin(Aws::Plugins::RequestCompression)
|
85
86
|
add_plugin(Aws::Plugins::DefaultsMode)
|
86
87
|
add_plugin(Aws::Plugins::RecursionDetection)
|
88
|
+
add_plugin(Aws::Plugins::Telemetry)
|
87
89
|
add_plugin(Aws::Plugins::Sign)
|
88
90
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
89
91
|
add_plugin(Aws::DynamoDBStreams::Plugins::SimpleAttributes)
|
@@ -343,6 +345,16 @@ module Aws::DynamoDBStreams
|
|
343
345
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
344
346
|
# requests are made, and retries are disabled.
|
345
347
|
#
|
348
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
349
|
+
# Allows you to provide a telemetry provider, which is used to
|
350
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
351
|
+
# will not record or emit any telemetry data. The SDK supports the
|
352
|
+
# following telemetry providers:
|
353
|
+
#
|
354
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
355
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
356
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
357
|
+
#
|
346
358
|
# @option options [Aws::TokenProvider] :token_provider
|
347
359
|
# A Bearer Token Provider. This can be an instance of any one of the
|
348
360
|
# following classes:
|
@@ -881,14 +893,19 @@ module Aws::DynamoDBStreams
|
|
881
893
|
# @api private
|
882
894
|
def build_request(operation_name, params = {})
|
883
895
|
handlers = @handlers.for(operation_name)
|
896
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
897
|
+
Aws::Telemetry.module_to_tracer_name('Aws::DynamoDBStreams')
|
898
|
+
)
|
884
899
|
context = Seahorse::Client::RequestContext.new(
|
885
900
|
operation_name: operation_name,
|
886
901
|
operation: config.api.operation(operation_name),
|
887
902
|
client: self,
|
888
903
|
params: params,
|
889
|
-
config: config
|
904
|
+
config: config,
|
905
|
+
tracer: tracer
|
906
|
+
)
|
890
907
|
context[:gem_name] = 'aws-sdk-dynamodbstreams'
|
891
|
-
context[:gem_version] = '1.
|
908
|
+
context[:gem_version] = '1.63.0'
|
892
909
|
Seahorse::Client::Request.new(handlers, context)
|
893
910
|
end
|
894
911
|
|
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodbstreams
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.63.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|