aws-sdk-ssmincidents 1.31.0 → 1.33.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: 7982b1e1cc3af38db4b25d3bf1353787b294a3656d9e0967c019b67940a82b2c
4
- data.tar.gz: 253224632f55750790e27b753d4bc5b93628d60e9f6428d17e6d953c50a8bf73
3
+ metadata.gz: 42d4b93135623039c7f62a34766330fac43f018b82bbcd830ed463e6c0943ba1
4
+ data.tar.gz: 92d691f69a3ea28fa8dc2c3e09e62641b85b585b4099e86d3a68719689966115
5
5
  SHA512:
6
- metadata.gz: cd6986242066cff58fdbd4d80365611697f02c7b7a215e10da26edb6fea016a82001ae7ab59288d6a43258ad4e666c223c43648a87b47dfd70960c19352c4855
7
- data.tar.gz: 54002bfd07bd897e508f22dfda3ba72c2bfe8eb4921f60d48c0b5b8efb4bb468349a9f7a648ccc92351cc420a6fb64f3e720466c275619556eb9defc51631eae
6
+ metadata.gz: 1f92839037d00bbecbdce7d014d1d880e788ec5a2b61458c919eb93447b29a87d17793d1cf80086582d4e97c890922f1942be3d86b2dafedc253d059d0850074
7
+ data.tar.gz: a07e1894c41365a2f9772d71b1b53fc638cd36943a5c5b9e3464364a5e640ae5fce3f23f506685482325dfc619d2e287529421ffab936011667790b78bc84b86
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.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.32.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.31.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.33.0
@@ -2084,7 +2084,7 @@ module Aws::SSMIncidents
2084
2084
  params: params,
2085
2085
  config: config)
2086
2086
  context[:gem_name] = 'aws-sdk-ssmincidents'
2087
- context[:gem_version] = '1.31.0'
2087
+ context[:gem_version] = '1.33.0'
2088
2088
  Seahorse::Client::Request.new(handlers, context)
2089
2089
  end
2090
2090
 
@@ -14,6 +14,7 @@ module Aws::SSMIncidents
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SSMIncidents::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::SSMIncidents
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
 
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ssmincidents/customizations'
53
53
  # @!group service
54
54
  module Aws::SSMIncidents
55
55
 
56
- GEM_VERSION = '1.31.0'
56
+ GEM_VERSION = '1.33.0'
57
57
 
58
58
  end