aws-sdk-dataexchange 1.44.0 → 1.46.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: 1aa0ba7fbe1c0b56a7ff2653585277948f4f24c1b3b78d9ea900868f5dad8739
4
- data.tar.gz: b0ec8fc745a6fc076d52b4fe2be2c7c4c431d3042c817f87a9971e75607cfd5e
3
+ metadata.gz: e1d1156e8dd29adac04823bd8edfbf0afa9cd07c0818acb094ec4ad0f2160e7f
4
+ data.tar.gz: c6bc33c2c3131932ce9019441cd0438a61b807bf2c4ddb250179214a13780070
5
5
  SHA512:
6
- metadata.gz: 3f0a15082c85ceef9621d1fcc79a2a697a5192668b842d895d110d673138051c51c102e4e6f66374db83c455ab646eb69ead5066044d1d0b8abf9d570c16b04f
7
- data.tar.gz: fa369a10e500bcc879817445aefc547378bf7ea70aade38d1ac266e59cb333221987649b0cdc37f6a2e89aae64cd5773a8d633159f787c5c3976270e2a9837c2
6
+ metadata.gz: 6815278cd4b6c048ea6b0cf646e212d21f45c1eb7527afb69f3cd1fdc187365fd0001c2e567bfb1c0a3766295443614c096b01e1687e0f1c2b3bebb9715eb6e5
7
+ data.tar.gz: 2423b3b4e3a1d5f740c3b7e0212a68d9f20e47e166c17dddd044bc484845d9855f901e93ddf528768bc95f555a5c08a832591586fc0b17b4e6f25a0763f43e60
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.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.45.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.44.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.46.0
@@ -2285,7 +2285,7 @@ module Aws::DataExchange
2285
2285
  params: params,
2286
2286
  config: config)
2287
2287
  context[:gem_name] = 'aws-sdk-dataexchange'
2288
- context[:gem_version] = '1.44.0'
2288
+ context[:gem_version] = '1.46.0'
2289
2289
  Seahorse::Client::Request.new(handlers, context)
2290
2290
  end
2291
2291
 
@@ -14,6 +14,7 @@ module Aws::DataExchange
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::DataExchange::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::DataExchange
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-dataexchange/customizations'
53
53
  # @!group service
54
54
  module Aws::DataExchange
55
55
 
56
- GEM_VERSION = '1.44.0'
56
+ GEM_VERSION = '1.46.0'
57
57
 
58
58
  end