aws-sdk-securitylake 1.13.0 → 1.15.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: bf7361fafdb981f92499d9e5c56b93b592d67797bf02b73acb6fe476d3192af4
4
- data.tar.gz: 4a3442a217d756250cc82fca5156ef45fd1f879e5a1ad4034b09a61885cd7cc5
3
+ metadata.gz: cd995ef1173ee9ccc86b5ce24d46ee90e0001e32c4f10952d3dbd69ad9c58a1e
4
+ data.tar.gz: a6526f4f14c024f162c0852a98ada3e9ce61b11401612e5bfd03fcd6bafceefb
5
5
  SHA512:
6
- metadata.gz: f3edf6cde8d86540210350e5d4e86147e0f02b3228a470ecf521971d9bac4aa12c4e1e9006b4d98e0ff3f9e4225b58a763e403c071a3b9c8c78e9ef64b5135fc
7
- data.tar.gz: 8394245181e163db86156120267c6a4d117c08809b8db95cfb7d62864ded5938ac613dabb6c8876547b1b36d7a126e090935177c57c3fa7f037ab9828b260266
6
+ metadata.gz: 551aba3600a96c48c37609a6269186267df8f7f4d344cf20721af520e233fecec6b0d3c24f6041304c352e7fe0c86faa440202037d78ec4722afa3ffb76f6212
7
+ data.tar.gz: a8b454497624dd412470f977ee4fbc0cf258f6c80d64bfe9a961a47f0350d92a8ddb578675d171a7e21aa1d0d729aaf9dd73725a4be6cd37a059ca427009abfb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.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.14.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.13.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.15.0
@@ -1928,7 +1928,7 @@ module Aws::SecurityLake
1928
1928
  params: params,
1929
1929
  config: config)
1930
1930
  context[:gem_name] = 'aws-sdk-securitylake'
1931
- context[:gem_version] = '1.13.0'
1931
+ context[:gem_version] = '1.15.0'
1932
1932
  Seahorse::Client::Request.new(handlers, context)
1933
1933
  end
1934
1934
 
@@ -14,6 +14,7 @@ module Aws::SecurityLake
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SecurityLake::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::SecurityLake
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-securitylake/customizations'
52
52
  # @!group service
53
53
  module Aws::SecurityLake
54
54
 
55
- GEM_VERSION = '1.13.0'
55
+ GEM_VERSION = '1.15.0'
56
56
 
57
57
  end