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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +25 -2
- data/lib/aws-sdk-ssm/endpoints.rb +140 -560
- data/lib/aws-sdk-ssm/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-ssm.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: e99c5b4cd46e0b2b0938a042d09faeea30bd5f17dd5b1d5d69f26f88ee549854
|
4
|
+
data.tar.gz: 62780ba6195d319fd3a565bd3d99c3ad3e9beba8acc521a06654c49d27c4fe10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.178.0
|
data/lib/aws-sdk-ssm/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/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.
|
12630
|
+
context[:gem_version] = '1.178.0'
|
12608
12631
|
Seahorse::Client::Request.new(handlers, context)
|
12609
12632
|
end
|
12610
12633
|
|