aws-sdk-sms 1.51.0 → 1.53.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: 428b2bc0932d24d156fe608f52e2148b6116226eecd6f9e689fb02a032f31971
4
- data.tar.gz: a466ff3473eeebac65b3d607a6d65d6d22f7502147eb304fd547d30bb1eceef0
3
+ metadata.gz: 39de570472fdd00d52e2a691dafd1bddc7385f894cefcdf9cdf7c47492abc950
4
+ data.tar.gz: 6626c42ed04b0e8b9bda1305110a618f6534aa085b16c3d7506013d30ad614e4
5
5
  SHA512:
6
- metadata.gz: 34fd24404cc7d5382f12a6e7af4c6feba11b198b52c75ce77c54c28fc57c45f238f1f3d25ad3f1ff011eae9857c10147b45991890139f74b558bdb026373a840
7
- data.tar.gz: 7a13e59694fbf9d3b2d6541ab175ac54fbda85ad2a2f8495164afcf46e9733a203a2af34c0ead5867a72dbbec84626e949a1f477a523842849dedb5593dd15aa
6
+ metadata.gz: 731565c491505ae78997878c2eb8deb119009859133e899cbb49350d83c67addb9410aa98557a9019fc1ac5305b22a304fecf5d8569084ead1ced437bf32ed64
7
+ data.tar.gz: 2ec75fd115c4126790a7ce25df8753566313aa9fa7d816f3ddfae01829d1faa47431709830f7fb3a40cc6b4b5e71ded36c789049c44c61403b886e8732eb5289
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.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.52.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.51.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.53.0
@@ -2109,7 +2109,7 @@ module Aws::SMS
2109
2109
  params: params,
2110
2110
  config: config)
2111
2111
  context[:gem_name] = 'aws-sdk-sms'
2112
- context[:gem_version] = '1.51.0'
2112
+ context[:gem_version] = '1.53.0'
2113
2113
  Seahorse::Client::Request.new(handlers, context)
2114
2114
  end
2115
2115
 
@@ -14,6 +14,7 @@ module Aws::SMS
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SMS::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::SMS
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-sms.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-sms/customizations'
52
52
  # @!group service
53
53
  module Aws::SMS
54
54
 
55
- GEM_VERSION = '1.51.0'
55
+ GEM_VERSION = '1.53.0'
56
56
 
57
57
  end