aws-sdk-pinpointsmsvoicev2 1.11.0 → 1.13.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: 54334712aecc5e477f5354b7008c4c0597bf3c612e844aba79af1ea1ff694158
4
- data.tar.gz: 45ac5adf1e7457f618e10c2c496d37d4a2219ecd048518be1cb0de1552846b2d
3
+ metadata.gz: 4f3cc72b33d98fe9c52ab2a6ea904f42b5a352b2881a31521707bfb34181afeb
4
+ data.tar.gz: 997224227ea5c3ab555b898913995c1cc37d2d815e9b444be932c7cea035265e
5
5
  SHA512:
6
- metadata.gz: 0b6c2f9cc0fecf0bc735d19b295bca0af4f2ecbc14a9244b171b9fa2de0d45eb535eed06cc59c7347615955c31f9f86f58375e1b283f94c73d9848fce4eeaece
7
- data.tar.gz: 2dac9b43bcd779233b9507846830377e8d817d19a6cbd0672035bd1cf894190d68f864b1fa109e93b3efb35602f37352866ac55d3a6190a5862e3401fd5b7999
6
+ metadata.gz: 541da29093effb93970d6ba84442e3a0e598a464619762dbc52a54504448fbb26cb36194f06f4a5f1050d617793fbcaa50ef4ded75e492d1d793e941ec103b97
7
+ data.tar.gz: 758e84ba28e134ef0ff5832b33be65c5e04d43a1cdc33b2f3596813d434f7dd1daae744d96ced06873bda3d73cb3cbe52f6919fc81836a58145a0c8150417188
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.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.12.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.11.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.13.0
@@ -4542,7 +4542,7 @@ module Aws::PinpointSMSVoiceV2
4542
4542
  params: params,
4543
4543
  config: config)
4544
4544
  context[:gem_name] = 'aws-sdk-pinpointsmsvoicev2'
4545
- context[:gem_version] = '1.11.0'
4545
+ context[:gem_version] = '1.13.0'
4546
4546
  Seahorse::Client::Request.new(handlers, context)
4547
4547
  end
4548
4548
 
@@ -14,6 +14,7 @@ module Aws::PinpointSMSVoiceV2
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::PinpointSMSVoiceV2::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::PinpointSMSVoiceV2
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-pinpointsmsvoicev2/customizations'
53
53
  # @!group service
54
54
  module Aws::PinpointSMSVoiceV2
55
55
 
56
- GEM_VERSION = '1.11.0'
56
+ GEM_VERSION = '1.13.0'
57
57
 
58
58
  end