aws-sdk-databasemigrationservice 1.90.0 → 1.92.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: dc134eb3bc8075b42db12d2d43bf21ab326d3566dec3d312b9874428191e33d2
4
- data.tar.gz: cf88ddbb4d37330724f202ad8d91b73cab3b188adc7e8c33f76be66a9483faa3
3
+ metadata.gz: 4e0652811f9ebf2f75eb9b5c674afcb0ab9b3903d630bf0724ad6cdfe83ce82f
4
+ data.tar.gz: 7054942f30668bb2f1820dec5602564a9cddb714c876cdcd9ebca88dc4521e42
5
5
  SHA512:
6
- metadata.gz: 5d2f895335511f089b8ba7608e0b62855484f2fe8d64c1efc551ad9b73c4e76e50537b0b376f033025e4802b2d3cb8b79dd0696c84ad9d48a2c7ca8ab838b9a6
7
- data.tar.gz: 7f95ed500944c941ab0e65f39d3a126fb6bc2929c8da4b01a94424275d3d0808430ced731a734f4aa9dee85c9d1e8aecb94c7781647ded3e772642abb314ebd6
6
+ metadata.gz: 987c3a3c010ae305310c05e563839c705f527e04d08d900cb40121211204bce704d98c681b4c28b75a176717b23516a4dc7b5559b1c69c7dbed1c4ac180903d5
7
+ data.tar.gz: 9c4c5d9b308f073007a61baab6c62c5831cd155ca9a754a274e1c2706c4f901d8cdbc66702821b0f833e1380f3fbcba433b4e3f2f6d40e35a25f63ffb1491098
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.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.91.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.90.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
1
+ 1.92.0
@@ -11856,7 +11856,7 @@ module Aws::DatabaseMigrationService
11856
11856
  params: params,
11857
11857
  config: config)
11858
11858
  context[:gem_name] = 'aws-sdk-databasemigrationservice'
11859
- context[:gem_version] = '1.90.0'
11859
+ context[:gem_version] = '1.92.0'
11860
11860
  Seahorse::Client::Request.new(handlers, context)
11861
11861
  end
11862
11862
 
@@ -14,6 +14,7 @@ module Aws::DatabaseMigrationService
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::DatabaseMigrationService::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::DatabaseMigrationService
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-databasemigrationservice/customizations'
53
53
  # @!group service
54
54
  module Aws::DatabaseMigrationService
55
55
 
56
- GEM_VERSION = '1.90.0'
56
+ GEM_VERSION = '1.92.0'
57
57
 
58
58
  end