aws-sdk-ssoadmin 1.33.0 → 1.35.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: 03de43f3c535bff05a8d79ec82881f02a9ded8863e01d56746c939dbb65f773a
4
- data.tar.gz: e027e2b6945b78106f296e00389bde2506ca9d5c31406dbebd1f2de0a8251004
3
+ metadata.gz: d70b93a3eb90f0de4ad5f7c95c1cc825a7bf2c76798ce2934da8fa72c4917536
4
+ data.tar.gz: e2e5d70c4ca955d258b925ef8fe9d30e1b90890b14c23dd535fed66beea4ffc6
5
5
  SHA512:
6
- metadata.gz: d2d0bdbcf743400c6aaf31e261e7aeea9519a4699a928dd3c00c74a6e5439dd07b60214f081ecfd62720bc85a635e1e90122e184e12052c7832d3b31a7ee7ed1
7
- data.tar.gz: b567e366a0588fcbdde8faeb27322e6fc4dc57b567c1da261e1b05907e123697c23106bf58197580555ef8a60d9b7be0b9dd9fd340d92c9fe6a60639c5143176
6
+ metadata.gz: 9f78549ffda35d5d6f10725d64123423f6ebe9d397c775e25b03cbf0d92ff52cf76a0be9361c5e50a39b89668ea2ad3845a1d457addd5ce3f4ba88dcacb5c5f9
7
+ data.tar.gz: 132d6d1eb1add88d01c6433d0644df3256297365adcc4f4ebdc863c15a741ae8a5d1b4c4e615306a61578e1755c170310aa1fce258d38737eddb64cd0950a1af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.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.34.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.33.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.35.0
@@ -3808,7 +3808,7 @@ module Aws::SSOAdmin
3808
3808
  params: params,
3809
3809
  config: config)
3810
3810
  context[:gem_name] = 'aws-sdk-ssoadmin'
3811
- context[:gem_version] = '1.33.0'
3811
+ context[:gem_version] = '1.35.0'
3812
3812
  Seahorse::Client::Request.new(handlers, context)
3813
3813
  end
3814
3814
 
@@ -14,6 +14,7 @@ module Aws::SSOAdmin
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SSOAdmin::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::SSOAdmin
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-ssoadmin/customizations'
52
52
  # @!group service
53
53
  module Aws::SSOAdmin
54
54
 
55
- GEM_VERSION = '1.33.0'
55
+ GEM_VERSION = '1.35.0'
56
56
 
57
57
  end