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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securitylake/client.rb +1 -1
- data/lib/aws-sdk-securitylake/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-securitylake.rb +1 -1
- data/sig/client.rbs +596 -0
- data/sig/errors.rbs +42 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +577 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd995ef1173ee9ccc86b5ce24d46ee90e0001e32c4f10952d3dbd69ad9c58a1e
|
4
|
+
data.tar.gz: a6526f4f14c024f162c0852a98ada3e9ce61b11401612e5bfd03fcd6bafceefb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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
|
|