aws-sdk-s3 1.159.0 → 1.162.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: 63543f5716e2d34cc5f16260c094e5a1b74a9b81e4b1b48d25669cacaf636e53
4
- data.tar.gz: 9af48693b677847fcdd84c02864ff226205a19b47666e6da74b530d7f1d5833a
3
+ metadata.gz: a0ce7e262a85e038bd67e567d9f401002997d4627ea64c1441ba581dc1f163ae
4
+ data.tar.gz: 37b2a93cfc3fbfd9dbbbeb68278f24d05f2f7505b630c66716162c0436ad8e67
5
5
  SHA512:
6
- metadata.gz: 2d1f86f9df2fcfa8dec3afa9cab9c7a7773fecbdf758568a7c98b0c9c4bf758744d1c70a06db932c83a23fcfa2faced45e85a077e0c70af61c7b325892344819
7
- data.tar.gz: a896d4443f17aff9b4e1f1c5660fedcca5dac3c236e813f147de1e513c46e7fd15afad9ac7fa130e191e32bc072719f8a7a9db77603f0a236615361a4caac052
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.159.0
1
+ 1.162.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/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.159.0'
19118
+ context[:gem_version] = '1.162.0'
19096
19119
  Seahorse::Client::Request.new(handlers, context)
19097
19120
  end
19098
19121