aws-sdk-opsworks 1.51.0 → 1.53.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: 512e3938a941c8699f8cc32e6817fc4da4c06b4e14977cd8617abf5574cc4487
4
- data.tar.gz: cca7904249372b71ee0c836c895559244f00cc1ec89c9f85a9dc90ae56194338
3
+ metadata.gz: 77df2cf3ce0280907552839c12d6dd86e95311dcfd69e14791d62e494c14ea94
4
+ data.tar.gz: e935e4ef1e1fc9ee356165f7b2f5a57b654b5d448263643058dadbf186c43928
5
5
  SHA512:
6
- metadata.gz: 8931fbc74d9bf3e34f28f750d027a0a15019f2d624555c84222b05d836e213a8d13b0c753a80c6a6bb9bcbbca8dd5ecb6974dfaae5769522b81bc6fe11c2250a
7
- data.tar.gz: a1e245ddf1f27062d64b02d1488e6dd71517351461391ae6dc9363d7f6362740b90927541de2f293686debc2f154c7ba7cdaf852b4bb2eb151ce404410cd1a10
6
+ metadata.gz: 311a60e5333cf188fb3cb5a4257999752211306a628da48faa5201478f10741de9a1bae31fd65b0c4a89f327cd801884e7c10ad6187cdfe81e4732e982be498c
7
+ data.tar.gz: 857eee2fb3a215b44072e67e3519cf91a6891cdcd0ed27b97f63f958238226df1e64a65162ceaef0912c3333714ad7782d2b71def2c129c79b94293a5b0f280d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.53.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.52.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.51.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.53.0
@@ -5710,7 +5710,7 @@ module Aws::OpsWorks
5710
5710
  params: params,
5711
5711
  config: config)
5712
5712
  context[:gem_name] = 'aws-sdk-opsworks'
5713
- context[:gem_version] = '1.51.0'
5713
+ context[:gem_version] = '1.53.0'
5714
5714
  Seahorse::Client::Request.new(handlers, context)
5715
5715
  end
5716
5716
 
@@ -14,6 +14,7 @@ module Aws::OpsWorks
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::OpsWorks::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::OpsWorks
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
 
@@ -56,6 +56,6 @@ require_relative 'aws-sdk-opsworks/customizations'
56
56
  # @!group service
57
57
  module Aws::OpsWorks
58
58
 
59
- GEM_VERSION = '1.51.0'
59
+ GEM_VERSION = '1.53.0'
60
60
 
61
61
  end