aws-sdk-mediapackage 1.68.0 → 1.70.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: 26ca1287053744a28213bcc802c024c1ce2fcd64b683a2efe8551bc0e53e908e
4
- data.tar.gz: 35a524b79013f057da8bbe55b0fb097f14aa6c236b3c433890aed1bc770de421
3
+ metadata.gz: 5583a7f83a96f78a736bc6c8b7e27097d76b872f4fb74cc51abfe899c4219c0f
4
+ data.tar.gz: 39008b4c4ae81364fc2021c41d242cda4e8dec78baa32f4969fe65442c38b733
5
5
  SHA512:
6
- metadata.gz: b914e66924f7a70f7fb5ceb20164a9470429d2f86bb14e205a7d47c4d0b294d83584a5a0a8609a8cb43e1900dd3f7a47ff9226524c8fed3473f2092018a9061a
7
- data.tar.gz: 435221a1a111e560141b3391edc74209dfec385d0a1e5157f4982d5f280d5498dad475aac43dd6c27da841da5df24224dd8b002717ea06f1347f36dd3d2c783d
6
+ metadata.gz: b17d8399465b46ac9e3b9c6e740d473fd24df363426805d623c1f89e333dde79cf52418d79abb352a232f3b0d011a7719f3fa30e2e20b0617e04895d81baafbd
7
+ data.tar.gz: 371017767fe99d0c85197565a5b535227b69d4e88d103e79fe7c60759df01a66670d2aeaef7852695cce451fe9c60ffd82e33b1f4a14a83915eec079abec9c41
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.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.69.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.68.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -1963,7 +1963,7 @@ module Aws::MediaPackage
1963
1963
  params: params,
1964
1964
  config: config)
1965
1965
  context[:gem_name] = 'aws-sdk-mediapackage'
1966
- context[:gem_version] = '1.68.0'
1966
+ context[:gem_version] = '1.70.0'
1967
1967
  Seahorse::Client::Request.new(handlers, context)
1968
1968
  end
1969
1969
 
@@ -14,6 +14,7 @@ module Aws::MediaPackage
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MediaPackage::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::MediaPackage
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-mediapackage/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaPackage
54
54
 
55
- GEM_VERSION = '1.68.0'
55
+ GEM_VERSION = '1.70.0'
56
56
 
57
57
  end