aws-sdk-securitylake 1.15.0 → 1.16.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securitylake/client.rb +4 -5
- data/lib/aws-sdk-securitylake/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-securitylake/types.rb +22 -14
- data/lib/aws-sdk-securitylake.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b96aa3eb675b0798898b0fed97a1aa2d42fa6734f9f47108440f7ffd7095a280
|
4
|
+
data.tar.gz: 2943a0c9aa63b9778355606299fa575be77c5db3ee1e94eaf6c13cadb8913889
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b1b5e016d51802b285d92749d4bb8f2294124c554b3028dab2b9d92089a4a7d3bf314533a9ccc7ca3d9d42b57ce7a1218d766595d6f9eb320e2616140108dd6
|
7
|
+
data.tar.gz: 3a855f1a980c71f4745a700a45b225263df90a854a66973a7ece94314b427a4eac8352fcdea39d88c82b46bb4b0c9748deeba670448c3f49b32f5526ddee27a2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
@@ -1296,8 +1296,7 @@ module Aws::SecurityLake
|
|
1296
1296
|
# pagination token will return an HTTP 400 InvalidToken error.
|
1297
1297
|
#
|
1298
1298
|
# @option params [Array<String>] :regions
|
1299
|
-
#
|
1300
|
-
# retrieved.
|
1299
|
+
# The Amazon Web Services Regions from which exceptions are retrieved.
|
1301
1300
|
#
|
1302
1301
|
# @return [Types::ListDataLakeExceptionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1303
1302
|
#
|
@@ -1337,7 +1336,7 @@ module Aws::SecurityLake
|
|
1337
1336
|
# determine whether Security Lake is enabled for a Region.
|
1338
1337
|
#
|
1339
1338
|
# @option params [Array<String>] :regions
|
1340
|
-
# The list of
|
1339
|
+
# The list of Regions where Security Lake is enabled.
|
1341
1340
|
#
|
1342
1341
|
# @return [Types::ListDataLakesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1343
1342
|
#
|
@@ -1393,7 +1392,7 @@ module Aws::SecurityLake
|
|
1393
1392
|
# repeat the call using the returned token to retrieve the next page.
|
1394
1393
|
#
|
1395
1394
|
# @option params [Array<String>] :regions
|
1396
|
-
# The list of
|
1395
|
+
# The list of Regions for which log sources are displayed.
|
1397
1396
|
#
|
1398
1397
|
# @option params [Array<Types::LogSourceResource>] :sources
|
1399
1398
|
# The list of sources for which log sources are displayed.
|
@@ -1928,7 +1927,7 @@ module Aws::SecurityLake
|
|
1928
1927
|
params: params,
|
1929
1928
|
config: config)
|
1930
1929
|
context[:gem_name] = 'aws-sdk-securitylake'
|
1931
|
-
context[:gem_version] = '1.
|
1930
|
+
context[:gem_version] = '1.16.0'
|
1932
1931
|
Seahorse::Client::Request.new(handlers, context)
|
1933
1932
|
end
|
1934
1933
|
|
@@ -32,7 +32,7 @@ module Aws::SecurityLake
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://securitylake-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -725,19 +725,28 @@ module Aws::SecurityLake
|
|
725
725
|
include Aws::Structure
|
726
726
|
end
|
727
727
|
|
728
|
-
# Provides replication details
|
728
|
+
# Provides replication details for objects stored in the Amazon Security
|
729
|
+
# Lake data lake.
|
729
730
|
#
|
730
731
|
# @!attribute [rw] regions
|
732
|
+
# Specifies one or more centralized rollup Regions. The Amazon Web
|
733
|
+
# Services Region specified in the `region` parameter of the [
|
734
|
+
# `CreateDataLake` ][1] or [ `UpdateDataLake` ][2] operations
|
735
|
+
# contributes data to the rollup Region or Regions specified in this
|
736
|
+
# parameter.
|
737
|
+
#
|
731
738
|
# Replication enables automatic, asynchronous copying of objects
|
732
|
-
# across Amazon S3 buckets.
|
733
|
-
#
|
734
|
-
#
|
735
|
-
#
|
736
|
-
# destination buckets can be in different
|
737
|
-
#
|
738
|
-
#
|
739
|
-
#
|
740
|
-
#
|
739
|
+
# across Amazon S3 buckets. S3 buckets that are configured for object
|
740
|
+
# replication can be owned by the same Amazon Web Services account or
|
741
|
+
# by different accounts. You can replicate objects to a single
|
742
|
+
# destination bucket or to multiple destination buckets. The
|
743
|
+
# destination buckets can be in different Regions or within the same
|
744
|
+
# Region as the source bucket.
|
745
|
+
#
|
746
|
+
#
|
747
|
+
#
|
748
|
+
# [1]: https://docs.aws.amazon.com/security-lake/latest/APIReference/API_CreateDataLake.html
|
749
|
+
# [2]: https://docs.aws.amazon.com/security-lake/latest/APIReference/API_UpdateDataLake.html
|
741
750
|
# @return [Array<String>]
|
742
751
|
#
|
743
752
|
# @!attribute [rw] role_arn
|
@@ -1327,8 +1336,7 @@ module Aws::SecurityLake
|
|
1327
1336
|
# @return [String]
|
1328
1337
|
#
|
1329
1338
|
# @!attribute [rw] regions
|
1330
|
-
#
|
1331
|
-
# retrieved.
|
1339
|
+
# The Amazon Web Services Regions from which exceptions are retrieved.
|
1332
1340
|
# @return [Array<String>]
|
1333
1341
|
#
|
1334
1342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securitylake-2018-05-10/ListDataLakeExceptionsRequest AWS API Documentation
|
@@ -1365,7 +1373,7 @@ module Aws::SecurityLake
|
|
1365
1373
|
end
|
1366
1374
|
|
1367
1375
|
# @!attribute [rw] regions
|
1368
|
-
# The list of
|
1376
|
+
# The list of Regions where Security Lake is enabled.
|
1369
1377
|
# @return [Array<String>]
|
1370
1378
|
#
|
1371
1379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securitylake-2018-05-10/ListDataLakesRequest AWS API Documentation
|
@@ -1404,7 +1412,7 @@ module Aws::SecurityLake
|
|
1404
1412
|
# @return [String]
|
1405
1413
|
#
|
1406
1414
|
# @!attribute [rw] regions
|
1407
|
-
# The list of
|
1415
|
+
# The list of Regions for which log sources are displayed.
|
1408
1416
|
# @return [Array<String>]
|
1409
1417
|
#
|
1410
1418
|
# @!attribute [rw] sources
|
data/lib/aws-sdk-securitylake.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-securitylake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|