aws-sdk-appflow 1.52.0 → 1.54.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: babc25671aee8de4f9333c68d85eaa3d3a9134f71a72ed3757277a0ae758e469
4
- data.tar.gz: 7eb51e7055a0c184b400afb20239404b1965784dea9b6683b5e35a34490db431
3
+ metadata.gz: f30f41007bfda715be0276bbd9a31b6f791633279a6d8bd04131d14677866e84
4
+ data.tar.gz: a7ce1a247416b5f843d2138287496c00e915280769dafadf4718e9186b9299d0
5
5
  SHA512:
6
- metadata.gz: 65e47e55fc707021ad640fccceab616046d99dd09b5dca57e8040fa1f9c8b14b1e0e2a8d03141f9b9e1b16aaa199b181eb7eab99476521bdccbe31827453a83b
7
- data.tar.gz: eea05c01b495d120a9451bb8d842df521560ac28947b6b1b4f5ab20f821877182e8d2cd2c381c3c91b67c145bf5de5b18c8f2a5d1b6717ee9f7cb8de3c2913e8
6
+ metadata.gz: 573f007d9232c16039ba8e4ebdbb7ecca3b3c9263534b7fe0eee38e1c8892721a711f70e03aec2a20257963c9ee454d3726620d19dd6a4adf2df0539122dd984
7
+ data.tar.gz: c3115ba8c8efa429a26de38c5f392142d7fad58519872adfde998373c6ec1f95eb9b43496b26476e058aff95e2082b86c42ddf03f978c2d56937f005a34c8fb3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.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.53.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.52.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.0
@@ -3268,7 +3268,7 @@ module Aws::Appflow
3268
3268
  params: params,
3269
3269
  config: config)
3270
3270
  context[:gem_name] = 'aws-sdk-appflow'
3271
- context[:gem_version] = '1.52.0'
3271
+ context[:gem_version] = '1.54.0'
3272
3272
  Seahorse::Client::Request.new(handlers, context)
3273
3273
  end
3274
3274
 
@@ -14,6 +14,7 @@ module Aws::Appflow
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Appflow::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::Appflow
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-appflow/customizations'
52
52
  # @!group service
53
53
  module Aws::Appflow
54
54
 
55
- GEM_VERSION = '1.52.0'
55
+ GEM_VERSION = '1.54.0'
56
56
 
57
57
  end