aws-sdk-chimesdkmediapipelines 1.16.0 → 1.18.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: 18c490c307e21d85f34bee8e6ded677495080cf7fb4736e4712d335871bec010
4
- data.tar.gz: 3f97f5a9cafa1f72bed520a3da1dd197fc50572627c8725ffcfd3df0e9cf0114
3
+ metadata.gz: '0539ed759d1f8bd37d7a17f21c81f2875b0f1e04025e9e0486cf8987b489317e'
4
+ data.tar.gz: 369c864cd4b406297a277cc8d041178d6a6fe0228f54258a33e63587a588f000
5
5
  SHA512:
6
- metadata.gz: cc351637c45349434de4bdc814dd30b78146062cc26bd603f1fdd0e79c18468cc4927c88291c91a4a5b1dea39341d232077e105193f69c5907c2b695c8ea417a
7
- data.tar.gz: c68a50ba90439863096b66b030bfdb716b21915bceff4e672b599bfde0aa5f619f3241bd6dd7b2703f3f75295e655809fb8b8caeaf16a64d8ff12f2824abb33d
6
+ metadata.gz: 4ba8edc5fc3b79c8cb6b6ff5efa53936fb878bbd9408410e5ba85b17e1fddedda04a94c997c342028e7722e0aa737893dd858f4b32a3e7cd42d6886ae62c994f
7
+ data.tar.gz: de2ddb8d3a022b0095445c38b7572a1fe53d328a91d1e484170eb3dedf58c479ccd08d9214c34b75353668e9e6aec6279cdb8e1b335689b7757933fe8d285d75
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.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.17.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.16.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -2460,7 +2460,7 @@ module Aws::ChimeSDKMediaPipelines
2460
2460
  params: params,
2461
2461
  config: config)
2462
2462
  context[:gem_name] = 'aws-sdk-chimesdkmediapipelines'
2463
- context[:gem_version] = '1.16.0'
2463
+ context[:gem_version] = '1.18.0'
2464
2464
  Seahorse::Client::Request.new(handlers, context)
2465
2465
  end
2466
2466
 
@@ -14,6 +14,7 @@ module Aws::ChimeSDKMediaPipelines
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ChimeSDKMediaPipelines::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::ChimeSDKMediaPipelines
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-chimesdkmediapipelines/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMediaPipelines
54
54
 
55
- GEM_VERSION = '1.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end