aws-sdk-cloudformation 1.114.0 → 1.117.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: 6cf5d7306932dcb9974e160771204cfe31eba1982f1c5eaa87bf51a68f880e21
4
- data.tar.gz: c771df38efbe98dc3c3f334767148502f972d569bd4d97980aaeb96bbb34d635
3
+ metadata.gz: 675d45c239e7c15ccf7b5acf37649d761a90d1a9ac52743e805c11c7c3dac839
4
+ data.tar.gz: 9ad2243e64fb534545872f02150a3cc2abf213a702390951395d046bdf3d5fb5
5
5
  SHA512:
6
- metadata.gz: 1fba783c9eed49f6f1efbca112a63c8f7a58ff8686408489b592c0c265913b7244030b815fc198bc132969081ef11fb84500ed29c54a15b23e1388f9a0395b03
7
- data.tar.gz: 27c06feb63b7e66ced859a6000eeb25757ebcec16cd2dd52aaaba3fedb4f6f950e621f79b4534aa55d9864efd100bf5aa78642fbc4808a4780c0e19494054b63
6
+ metadata.gz: 1713f4008890577339593dcae74b1dd35683a4e4e5a665e2ac3e2fcaae29e4b6fea5c2d336956fd13c0372816a204226d4b21f7c40021d3b2dd74e83291a147a
7
+ data.tar.gz: 5c91ebbe1c15bd685e5b31fb0160f0f66d5994b6b9921111c32843d006c669ee1f3355f3266d6af2ffc0b5e002e1b5843411940762848c479a18578fe37d56bd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.117.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.116.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.115.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.114.0 (2024-07-02)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.117.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/query.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::CloudFormation
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::Query)
88
90
  add_plugin(Aws::CloudFormation::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::CloudFormation
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -413,6 +425,12 @@ module Aws::CloudFormation
413
425
  # @option options [String] :ssl_ca_store
414
426
  # Sets the X509::Store to verify peer certificate.
415
427
  #
428
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
429
+ # Sets a client certificate when creating http connections.
430
+ #
431
+ # @option options [OpenSSL::PKey] :ssl_key
432
+ # Sets a client key when creating http connections.
433
+ #
416
434
  # @option options [Float] :ssl_timeout
417
435
  # Sets the SSL timeout in seconds
418
436
  #
@@ -8383,14 +8401,19 @@ module Aws::CloudFormation
8383
8401
  # @api private
8384
8402
  def build_request(operation_name, params = {})
8385
8403
  handlers = @handlers.for(operation_name)
8404
+ tracer = config.telemetry_provider.tracer_provider.tracer(
8405
+ Aws::Telemetry.module_to_tracer_name('Aws::CloudFormation')
8406
+ )
8386
8407
  context = Seahorse::Client::RequestContext.new(
8387
8408
  operation_name: operation_name,
8388
8409
  operation: config.api.operation(operation_name),
8389
8410
  client: self,
8390
8411
  params: params,
8391
- config: config)
8412
+ config: config,
8413
+ tracer: tracer
8414
+ )
8392
8415
  context[:gem_name] = 'aws-sdk-cloudformation'
8393
- context[:gem_version] = '1.114.0'
8416
+ context[:gem_version] = '1.117.0'
8394
8417
  Seahorse::Client::Request.new(handlers, context)
8395
8418
  end
8396
8419