aws-sdk-ec2 1.471.0 → 1.474.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1d402b01d90a3c9e5fc1084946c8fe5e532bc67f31fddccf1843ef4a78d9e89
4
- data.tar.gz: f8c16f31763fe418980b88aae7fef4a15352e8dcaee2b3f835502cdc9f5daba8
3
+ metadata.gz: 5c7c46a45b9d00183e77488a44ea5b89fa72af802c95ab4c2c9df84548b6650a
4
+ data.tar.gz: 7f7530315536f64ade7bd0f17c3078f2e27d6a831cce2ee4b3437cd0c7c93659
5
5
  SHA512:
6
- metadata.gz: 9ff058d8c325ea21b7663de739e94c409472c9bfadd0c92683a0717b39bb5ffe45ec342fc10e20e81cbe42c9f77245fc89711b8696e359f22698f20657c17513
7
- data.tar.gz: bad002863b26d6fa8d1217daa4d772118b66b4a855226885f5629d778e0772ca3a841a5cc5024a4acb54a24d3c391945822604d5dd3de2989b5c61b7fdde0a39
6
+ metadata.gz: 9b8bd690a4efaf8a652fade9e51ae64f25c76fdc6ee842a950d8c0dab4d5c37a036e2e9c033cba2ed3cc6248c98eecec17a1102058c9b31b5152901746d49f39
7
+ data.tar.gz: 9689f8ea06f64ee076b3876f47b05752d1986c20156fc2ebb9507dcefadede2cf9c1e2c9727e81f876489081b21cd51e702ac394bb7ca7305c57e45d1fc5ad2d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.474.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.473.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.472.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.471.0 (2024-08-28)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.471.0
1
+ 1.474.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/ec2.rb'
37
38
  require 'aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb'
@@ -85,6 +86,7 @@ module Aws::EC2
85
86
  add_plugin(Aws::Plugins::RequestCompression)
86
87
  add_plugin(Aws::Plugins::DefaultsMode)
87
88
  add_plugin(Aws::Plugins::RecursionDetection)
89
+ add_plugin(Aws::Plugins::Telemetry)
88
90
  add_plugin(Aws::Plugins::Sign)
89
91
  add_plugin(Aws::Plugins::Protocols::EC2)
90
92
  add_plugin(Aws::EC2::Plugins::CopyEncryptedSnapshot)
@@ -334,6 +336,16 @@ module Aws::EC2
334
336
  # ** Please note ** When response stubbing is enabled, no HTTP
335
337
  # requests are made, and retries are disabled.
336
338
  #
339
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
340
+ # Allows you to provide a telemetry provider, which is used to
341
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
342
+ # will not record or emit any telemetry data. The SDK supports the
343
+ # following telemetry providers:
344
+ #
345
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
346
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
347
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
348
+ #
337
349
  # @option options [Aws::TokenProvider] :token_provider
338
350
  # A Bearer Token Provider. This can be an instance of any one of the
339
351
  # following classes:
@@ -417,6 +429,12 @@ module Aws::EC2
417
429
  # @option options [String] :ssl_ca_store
418
430
  # Sets the X509::Store to verify peer certificate.
419
431
  #
432
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
433
+ # Sets a client certificate when creating http connections.
434
+ #
435
+ # @option options [OpenSSL::PKey] :ssl_key
436
+ # Sets a client key when creating http connections.
437
+ #
420
438
  # @option options [Float] :ssl_timeout
421
439
  # Sets the SSL timeout in seconds
422
440
  #
@@ -60102,14 +60120,19 @@ module Aws::EC2
60102
60120
  # @api private
60103
60121
  def build_request(operation_name, params = {})
60104
60122
  handlers = @handlers.for(operation_name)
60123
+ tracer = config.telemetry_provider.tracer_provider.tracer(
60124
+ Aws::Telemetry.module_to_tracer_name('Aws::EC2')
60125
+ )
60105
60126
  context = Seahorse::Client::RequestContext.new(
60106
60127
  operation_name: operation_name,
60107
60128
  operation: config.api.operation(operation_name),
60108
60129
  client: self,
60109
60130
  params: params,
60110
- config: config)
60131
+ config: config,
60132
+ tracer: tracer
60133
+ )
60111
60134
  context[:gem_name] = 'aws-sdk-ec2'
60112
- context[:gem_version] = '1.471.0'
60135
+ context[:gem_version] = '1.474.0'
60113
60136
  Seahorse::Client::Request.new(handlers, context)
60114
60137
  end
60115
60138