aws-sdk-dynamodbstreams 1.62.0 → 1.64.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodbstreams/client.rb +25 -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: 32b446b509b7d35ea868099b180c385e60a3bb16e6288ff1dc3e2d7b6821ca49
|
4
|
+
data.tar.gz: 23a3182dcc37da0609277a4cf6d563b7e93ab1562fdb9f972a8369709f27d44d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b156b683c21ed5ce28a168d103ac17b034b54042abe727b9941ff7d9b2a4488cb7177672bac04c2a320715ea71da99a549d7f390eecddccf2e4043a95171e81b
|
7
|
+
data.tar.gz: 913d4582e73224e167233474fb27a3488ef850f313085d1b41cad8708aec2756efc11a8fb29a59e1270432ee54c65f7fbefa3a7a9f817e1fcfef3e79b2986e91
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2024-09-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.63.0 (2024-09-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.62.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.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:
|
@@ -426,6 +438,12 @@ module Aws::DynamoDBStreams
|
|
426
438
|
# @option options [String] :ssl_ca_store
|
427
439
|
# Sets the X509::Store to verify peer certificate.
|
428
440
|
#
|
441
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
442
|
+
# Sets a client certificate when creating http connections.
|
443
|
+
#
|
444
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
445
|
+
# Sets a client key when creating http connections.
|
446
|
+
#
|
429
447
|
# @option options [Float] :ssl_timeout
|
430
448
|
# Sets the SSL timeout in seconds
|
431
449
|
#
|
@@ -881,14 +899,19 @@ module Aws::DynamoDBStreams
|
|
881
899
|
# @api private
|
882
900
|
def build_request(operation_name, params = {})
|
883
901
|
handlers = @handlers.for(operation_name)
|
902
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
903
|
+
Aws::Telemetry.module_to_tracer_name('Aws::DynamoDBStreams')
|
904
|
+
)
|
884
905
|
context = Seahorse::Client::RequestContext.new(
|
885
906
|
operation_name: operation_name,
|
886
907
|
operation: config.api.operation(operation_name),
|
887
908
|
client: self,
|
888
909
|
params: params,
|
889
|
-
config: config
|
910
|
+
config: config,
|
911
|
+
tracer: tracer
|
912
|
+
)
|
890
913
|
context[:gem_name] = 'aws-sdk-dynamodbstreams'
|
891
|
-
context[:gem_version] = '1.
|
914
|
+
context[:gem_version] = '1.64.0'
|
892
915
|
Seahorse::Client::Request.new(handlers, context)
|
893
916
|
end
|
894
917
|
|
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.64.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-10 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
|