aws-sdk-ssm 1.175.0 → 1.178.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: 4c475be05cbd950c1fa254bd9ec01fd156c63a82c0865fd5e24e15501545c4b7
4
- data.tar.gz: 1c5e0b65311c04427b52efd8a6a8d86d27be775b49fed71ee19a986c9c40ec4b
3
+ metadata.gz: e99c5b4cd46e0b2b0938a042d09faeea30bd5f17dd5b1d5d69f26f88ee549854
4
+ data.tar.gz: 62780ba6195d319fd3a565bd3d99c3ad3e9beba8acc521a06654c49d27c4fe10
5
5
  SHA512:
6
- metadata.gz: 85aa05ad10912118af25fefc5e5bf19b360dd39b9913ca24d6a39f14ceb0c3d1476cd8c47651b0547e1bb6efb7f570affde5d56db61128c1720f129f2bc2c6dd
7
- data.tar.gz: bcf55202f3246cddaa608089be6c12406ddcaf26fc86452944b5c49d1ae595f1715d1ccbf1b9531d987d94d50e0398c97e0512c7dac572b2c5ae309f8edbb9fc
6
+ metadata.gz: bd9c287fdf9a464b9e303512b8d3f50679f5a674935dfc80323a2b3087416afe4262e82d8e715cf934369b58c1f8045b38512a419a52bac84d760b38836831c1
7
+ data.tar.gz: 96c39505b198897da0a85817df1d9b36410f7c0bdea582ab72f01a430f7aac344a799a5a6c50526477b046a1b307d932de3a5e13c8d4cfb5d6b4f5f5762e1de6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.178.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.177.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.176.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.175.0 (2024-08-09)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.175.0
1
+ 1.178.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
 
@@ -83,6 +84,7 @@ module Aws::SSM
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::JsonRpc)
88
90
  add_plugin(Aws::SSM::Plugins::Endpoints)
@@ -337,6 +339,16 @@ module Aws::SSM
337
339
  # ** Please note ** When response stubbing is enabled, no HTTP
338
340
  # requests are made, and retries are disabled.
339
341
  #
342
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
343
+ # Allows you to provide a telemetry provider, which is used to
344
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
345
+ # will not record or emit any telemetry data. The SDK supports the
346
+ # following telemetry providers:
347
+ #
348
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
349
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
350
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
351
+ #
340
352
  # @option options [Aws::TokenProvider] :token_provider
341
353
  # A Bearer Token Provider. This can be an instance of any one of the
342
354
  # following classes:
@@ -420,6 +432,12 @@ module Aws::SSM
420
432
  # @option options [String] :ssl_ca_store
421
433
  # Sets the X509::Store to verify peer certificate.
422
434
  #
435
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
436
+ # Sets a client certificate when creating http connections.
437
+ #
438
+ # @option options [OpenSSL::PKey] :ssl_key
439
+ # Sets a client key when creating http connections.
440
+ #
423
441
  # @option options [Float] :ssl_timeout
424
442
  # Sets the SSL timeout in seconds
425
443
  #
@@ -12597,14 +12615,19 @@ module Aws::SSM
12597
12615
  # @api private
12598
12616
  def build_request(operation_name, params = {})
12599
12617
  handlers = @handlers.for(operation_name)
12618
+ tracer = config.telemetry_provider.tracer_provider.tracer(
12619
+ Aws::Telemetry.module_to_tracer_name('Aws::SSM')
12620
+ )
12600
12621
  context = Seahorse::Client::RequestContext.new(
12601
12622
  operation_name: operation_name,
12602
12623
  operation: config.api.operation(operation_name),
12603
12624
  client: self,
12604
12625
  params: params,
12605
- config: config)
12626
+ config: config,
12627
+ tracer: tracer
12628
+ )
12606
12629
  context[:gem_name] = 'aws-sdk-ssm'
12607
- context[:gem_version] = '1.175.0'
12630
+ context[:gem_version] = '1.178.0'
12608
12631
  Seahorse::Client::Request.new(handlers, context)
12609
12632
  end
12610
12633