aws-sdk-s3 1.159.0 → 1.162.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/client.rb +25 -2
- data/lib/aws-sdk-s3/endpoints.rb +99 -396
- data/lib/aws-sdk-s3/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-s3.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: a0ce7e262a85e038bd67e567d9f401002997d4627ea64c1441ba581dc1f163ae
|
4
|
+
data.tar.gz: 37b2a93cfc3fbfd9dbbbeb68278f24d05f2f7505b630c66716162c0436ad8e67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef83c564ee123d7ea47a7210771774f5bd875a08580f38938c9f0cc92cf44d10adfc1444a8868bccfe4d0dc8fbc26ea1abe344da539250693e3cd9083635770e
|
7
|
+
data.tar.gz: e8b5a3ac07acd57a137c9fa974091c885c6f816243f165d8ad6a8746ac56096726456b9776bdc91ab8f919ad0016590acfbe75c79a0f307e41cad9f3bdc1cc3c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.162.0 (2024-09-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.161.0 (2024-09-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.160.0 (2024-09-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.159.0 (2024-08-20)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.162.0
|
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -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/rest_xml.rb'
|
37
38
|
require 'aws-sdk-s3/plugins/accelerate.rb'
|
@@ -104,6 +105,7 @@ module Aws::S3
|
|
104
105
|
add_plugin(Aws::Plugins::RequestCompression)
|
105
106
|
add_plugin(Aws::Plugins::DefaultsMode)
|
106
107
|
add_plugin(Aws::Plugins::RecursionDetection)
|
108
|
+
add_plugin(Aws::Plugins::Telemetry)
|
107
109
|
add_plugin(Aws::Plugins::Sign)
|
108
110
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
109
111
|
add_plugin(Aws::S3::Plugins::Accelerate)
|
@@ -432,6 +434,16 @@ module Aws::S3
|
|
432
434
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
433
435
|
# requests are made, and retries are disabled.
|
434
436
|
#
|
437
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
438
|
+
# Allows you to provide a telemetry provider, which is used to
|
439
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
440
|
+
# will not record or emit any telemetry data. The SDK supports the
|
441
|
+
# following telemetry providers:
|
442
|
+
#
|
443
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
444
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
445
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
446
|
+
#
|
435
447
|
# @option options [Aws::TokenProvider] :token_provider
|
436
448
|
# A Bearer Token Provider. This can be an instance of any one of the
|
437
449
|
# following classes:
|
@@ -520,6 +532,12 @@ module Aws::S3
|
|
520
532
|
# @option options [String] :ssl_ca_store
|
521
533
|
# Sets the X509::Store to verify peer certificate.
|
522
534
|
#
|
535
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
536
|
+
# Sets a client certificate when creating http connections.
|
537
|
+
#
|
538
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
539
|
+
# Sets a client key when creating http connections.
|
540
|
+
#
|
523
541
|
# @option options [Float] :ssl_timeout
|
524
542
|
# Sets the SSL timeout in seconds
|
525
543
|
#
|
@@ -19085,14 +19103,19 @@ module Aws::S3
|
|
19085
19103
|
# @api private
|
19086
19104
|
def build_request(operation_name, params = {})
|
19087
19105
|
handlers = @handlers.for(operation_name)
|
19106
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
19107
|
+
Aws::Telemetry.module_to_tracer_name('Aws::S3')
|
19108
|
+
)
|
19088
19109
|
context = Seahorse::Client::RequestContext.new(
|
19089
19110
|
operation_name: operation_name,
|
19090
19111
|
operation: config.api.operation(operation_name),
|
19091
19112
|
client: self,
|
19092
19113
|
params: params,
|
19093
|
-
config: config
|
19114
|
+
config: config,
|
19115
|
+
tracer: tracer
|
19116
|
+
)
|
19094
19117
|
context[:gem_name] = 'aws-sdk-s3'
|
19095
|
-
context[:gem_version] = '1.
|
19118
|
+
context[:gem_version] = '1.162.0'
|
19096
19119
|
Seahorse::Client::Request.new(handlers, context)
|
19097
19120
|
end
|
19098
19121
|
|