aws-sdk-ssm 1.161.0 → 1.163.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: 69901ab295300f6ef0d3564f065f801fa093f08118f1260f385cf53227b71dc4
4
- data.tar.gz: 6557c9708f0608dd7cc967827eecd19cc7a8a44c658e661a35857663ebf48197
3
+ metadata.gz: 86b9c8484ec6e1da2807ad972a41f79b8c712e8ac80a5be09d372b246b15e9d8
4
+ data.tar.gz: c75ecbe08bc4c911b857385298346634446eb2e0c2189091e3f2fb34652fa508
5
5
  SHA512:
6
- metadata.gz: 4a12f9dcf7f79610616720a2f1f7b0d724c4035c1b81471021d4fe11e33282ed3b11f02da0409f7eddb6ec3ccde99a8134785efec853a3e0fc97c6c5936514be
7
- data.tar.gz: c18a678431414240b2130284e449db82551ff4a02f9190247c691779f1a5e8020fb04732891cb0e60a82099bb5c86b6bfdd51cf6ca21670e5329149acb02b8e4
6
+ metadata.gz: 6bdca321ed83de41deca6e2ae2ad7c2afb01657bbfeaf7f02e01a7ae336fc87d02239fc8f000d9f8d32e41f8a27b03086180c907eed60d8202bcc17c41941cd9
7
+ data.tar.gz: 006e52f8a4ffeca387b1f2fd07909f432aa3812a6dee0f1d3476d76dfe8b729c3fb7c690f4d6dd0119ef28ae936a48584916635d6f9896057ddafc86ee320dff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.163.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.162.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.161.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.161.0
1
+ 1.163.0
@@ -12257,7 +12257,7 @@ module Aws::SSM
12257
12257
  params: params,
12258
12258
  config: config)
12259
12259
  context[:gem_name] = 'aws-sdk-ssm'
12260
- context[:gem_version] = '1.161.0'
12260
+ context[:gem_version] = '1.163.0'
12261
12261
  Seahorse::Client::Request.new(handlers, context)
12262
12262
  end
12263
12263
 
@@ -14,6 +14,7 @@ module Aws::SSM
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SSM::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -25,16 +26,17 @@ module Aws::SSM
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
data/lib/aws-sdk-ssm.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ssm/customizations'
53
53
  # @!group service
54
54
  module Aws::SSM
55
55
 
56
- GEM_VERSION = '1.161.0'
56
+ GEM_VERSION = '1.163.0'
57
57
 
58
58
  end