aws-sdk-ssmcontacts 1.25.0 → 1.27.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: c9d3f4d16af3e3265b2554f2fbb506234915827fa71fe68296153e4f9eff3832
4
- data.tar.gz: b9649cf04130beac79cb6a6c44c0dd7cb2f6b5d9d3c1ce40fb24c2f30a563ffe
3
+ metadata.gz: 2fea966d23e19b914f516f4e0e2bb94f6ae84f0e3e1b9a474d6cb3a33169d8e8
4
+ data.tar.gz: 2b10c0115f7334740ed571f0d5d9abed29f06d98f13a765b093002018f97b29f
5
5
  SHA512:
6
- metadata.gz: 3694eb2321f8d4915dac52ad6de3d921ed16a5db8455aeab93fb3a569abae3a25a3ca35dcfef47b672e73608e9049e6a36e85100f8ae33f5063f2f5225c96a87
7
- data.tar.gz: a5b6f37be7c39f77e3968b83d0ab30eeb1ca0dc5f6754f8ba36bd1ff09cb5590ce750a5b53ee01b1e9dc5fefc9a72034d91b1a6b83c9549cbfddf0cf22b6892c
6
+ metadata.gz: 3307b92ac637cb1d0b7df670d41bf3a604feb7f5b579a57b9b235c0815ab62550ff6051d43b52d990a1e4141e1eaf14e1ebe502be20555b0a8bfa8aee947890a
7
+ data.tar.gz: 8ef43cb1c4ed7cfbd28059fa4b210185b0e0f16fabcedfbb2b04d467ca06e3659a328fd186fb63b425655c5099021f8e4f25086a7e24304e6c4ddc4f3b204a95
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.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.26.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.25.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.0
@@ -2350,7 +2350,7 @@ module Aws::SSMContacts
2350
2350
  params: params,
2351
2351
  config: config)
2352
2352
  context[:gem_name] = 'aws-sdk-ssmcontacts'
2353
- context[:gem_version] = '1.25.0'
2353
+ context[:gem_version] = '1.27.0'
2354
2354
  Seahorse::Client::Request.new(handlers, context)
2355
2355
  end
2356
2356
 
@@ -14,6 +14,7 @@ module Aws::SSMContacts
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SSMContacts::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::SSMContacts
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
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ssmcontacts/customizations'
52
52
  # @!group service
53
53
  module Aws::SSMContacts
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end