aws-sdk-securitylake 1.16.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b96aa3eb675b0798898b0fed97a1aa2d42fa6734f9f47108440f7ffd7095a280
4
- data.tar.gz: 2943a0c9aa63b9778355606299fa575be77c5db3ee1e94eaf6c13cadb8913889
3
+ metadata.gz: edb3d020295bee865f83eaa3660b4754d2df99377be14ef0bfa67ee84c8ce87a
4
+ data.tar.gz: 66a81c179674c5280bfaf4ea54eb7c933bc0a2966e40e0dd39765198a09b466f
5
5
  SHA512:
6
- metadata.gz: 6b1b5e016d51802b285d92749d4bb8f2294124c554b3028dab2b9d92089a4a7d3bf314533a9ccc7ca3d9d42b57ce7a1218d766595d6f9eb320e2616140108dd6
7
- data.tar.gz: 3a855f1a980c71f4745a700a45b225263df90a854a66973a7ece94314b427a4eac8352fcdea39d88c82b46bb4b0c9748deeba670448c3f49b32f5526ddee27a2
6
+ metadata.gz: 5e624db84fc7f740649795dd0754a7a36e1db1a7960de643a0ec0656c700d48f98191702dd3602c9ad2a65ded2000023070d1eeb3f6ba800b32e0839b522b5be
7
+ data.tar.gz: 35d2f125c415ba7af08d15a81f2078a5247a816482cecbe78ac5c78d22ef4e60472f113b600b337aafaefd0c0a406ce3f8c15ea47ced330772d2c8664bcb311d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.17.0 (2024-02-29)
10
+ ------------------
11
+
12
+ * Feature - Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason.
13
+
4
14
  1.16.0 (2024-02-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.18.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::SecurityLake
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::SecurityLake
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::SecurityLake
337
346
  # @option options [Aws::SecurityLake::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::SecurityLake::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -415,7 +439,7 @@ module Aws::SecurityLake
415
439
  # {
416
440
  # accounts: ["AwsAccountId"],
417
441
  # regions: ["Region"], # required
418
- # source_name: "ROUTE53", # required, accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
442
+ # source_name: "ROUTE53", # required, accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
419
443
  # source_version: "AwsLogSourceVersion",
420
444
  # },
421
445
  # ],
@@ -445,7 +469,7 @@ module Aws::SecurityLake
445
469
  # source. In addition, this operation also creates an associated Glue
446
470
  # table and an Glue crawler.
447
471
  #
448
- # @option params [Types::CustomLogSourceConfiguration] :configuration
472
+ # @option params [required, Types::CustomLogSourceConfiguration] :configuration
449
473
  # The configuration for the third-party custom source.
450
474
  #
451
475
  # @option params [Array<String>] :event_classes
@@ -526,7 +550,7 @@ module Aws::SecurityLake
526
550
  # @example Request syntax with placeholder values
527
551
  #
528
552
  # resp = client.create_custom_log_source({
529
- # configuration: {
553
+ # configuration: { # required
530
554
  # crawler_configuration: { # required
531
555
  # role_arn: "RoleArn", # required
532
556
  # },
@@ -700,7 +724,7 @@ module Aws::SecurityLake
700
724
  # your organization. Security Lake is not automatically enabled for any
701
725
  # existing member accounts in your organization.
702
726
  #
703
- # @option params [required, Array<Types::DataLakeAutoEnableNewAccountConfiguration>] :auto_enable_new_account
727
+ # @option params [Array<Types::DataLakeAutoEnableNewAccountConfiguration>] :auto_enable_new_account
704
728
  # Enable Security Lake with the specified configuration settings, to
705
729
  # begin collecting security data for new accounts in your organization.
706
730
  #
@@ -709,12 +733,12 @@ module Aws::SecurityLake
709
733
  # @example Request syntax with placeholder values
710
734
  #
711
735
  # resp = client.create_data_lake_organization_configuration({
712
- # auto_enable_new_account: [ # required
736
+ # auto_enable_new_account: [
713
737
  # {
714
738
  # region: "Region", # required
715
739
  # sources: [ # required
716
740
  # {
717
- # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
741
+ # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
718
742
  # source_version: "AwsLogSourceVersion",
719
743
  # },
720
744
  # ],
@@ -768,7 +792,7 @@ module Aws::SecurityLake
768
792
  # sources: [ # required
769
793
  # {
770
794
  # aws_log_source: {
771
- # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
795
+ # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
772
796
  # source_version: "AwsLogSourceVersion",
773
797
  # },
774
798
  # custom_log_source: {
@@ -810,7 +834,7 @@ module Aws::SecurityLake
810
834
  # resp.subscriber.role_arn #=> String
811
835
  # resp.subscriber.s3_bucket_arn #=> String
812
836
  # resp.subscriber.sources #=> Array
813
- # resp.subscriber.sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA"
837
+ # resp.subscriber.sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA", "EKS_AUDIT", "WAF"
814
838
  # resp.subscriber.sources[0].aws_log_source.source_version #=> String
815
839
  # resp.subscriber.sources[0].custom_log_source.attributes.crawler_arn #=> String
816
840
  # resp.subscriber.sources[0].custom_log_source.attributes.database_arn #=> String
@@ -910,7 +934,7 @@ module Aws::SecurityLake
910
934
  # {
911
935
  # accounts: ["AwsAccountId"],
912
936
  # regions: ["Region"], # required
913
- # source_name: "ROUTE53", # required, accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
937
+ # source_name: "ROUTE53", # required, accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
914
938
  # source_version: "AwsLogSourceVersion",
915
939
  # },
916
940
  # ],
@@ -1016,7 +1040,7 @@ module Aws::SecurityLake
1016
1040
  # this operation, new member accounts won't automatically contribute
1017
1041
  # data to the data lake.
1018
1042
  #
1019
- # @option params [required, Array<Types::DataLakeAutoEnableNewAccountConfiguration>] :auto_enable_new_account
1043
+ # @option params [Array<Types::DataLakeAutoEnableNewAccountConfiguration>] :auto_enable_new_account
1020
1044
  # Turns off automatic enablement of Security Lake for member accounts
1021
1045
  # that are added to an organization.
1022
1046
  #
@@ -1025,12 +1049,12 @@ module Aws::SecurityLake
1025
1049
  # @example Request syntax with placeholder values
1026
1050
  #
1027
1051
  # resp = client.delete_data_lake_organization_configuration({
1028
- # auto_enable_new_account: [ # required
1052
+ # auto_enable_new_account: [
1029
1053
  # {
1030
1054
  # region: "Region", # required
1031
1055
  # sources: [ # required
1032
1056
  # {
1033
- # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
1057
+ # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
1034
1058
  # source_version: "AwsLogSourceVersion",
1035
1059
  # },
1036
1060
  # ],
@@ -1152,7 +1176,7 @@ module Aws::SecurityLake
1152
1176
  # resp.auto_enable_new_account #=> Array
1153
1177
  # resp.auto_enable_new_account[0].region #=> String
1154
1178
  # resp.auto_enable_new_account[0].sources #=> Array
1155
- # resp.auto_enable_new_account[0].sources[0].source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA"
1179
+ # resp.auto_enable_new_account[0].sources[0].source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA", "EKS_AUDIT", "WAF"
1156
1180
  # resp.auto_enable_new_account[0].sources[0].source_version #=> String
1157
1181
  #
1158
1182
  # @see http://docs.aws.amazon.com/goto/WebAPI/securitylake-2018-05-10/GetDataLakeOrganizationConfiguration AWS API Documentation
@@ -1252,7 +1276,7 @@ module Aws::SecurityLake
1252
1276
  # resp.subscriber.role_arn #=> String
1253
1277
  # resp.subscriber.s3_bucket_arn #=> String
1254
1278
  # resp.subscriber.sources #=> Array
1255
- # resp.subscriber.sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA"
1279
+ # resp.subscriber.sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA", "EKS_AUDIT", "WAF"
1256
1280
  # resp.subscriber.sources[0].aws_log_source.source_version #=> String
1257
1281
  # resp.subscriber.sources[0].custom_log_source.attributes.crawler_arn #=> String
1258
1282
  # resp.subscriber.sources[0].custom_log_source.attributes.database_arn #=> String
@@ -1414,7 +1438,7 @@ module Aws::SecurityLake
1414
1438
  # sources: [
1415
1439
  # {
1416
1440
  # aws_log_source: {
1417
- # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
1441
+ # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
1418
1442
  # source_version: "AwsLogSourceVersion",
1419
1443
  # },
1420
1444
  # custom_log_source: {
@@ -1441,7 +1465,7 @@ module Aws::SecurityLake
1441
1465
  # resp.sources[0].account #=> String
1442
1466
  # resp.sources[0].region #=> String
1443
1467
  # resp.sources[0].sources #=> Array
1444
- # resp.sources[0].sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA"
1468
+ # resp.sources[0].sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA", "EKS_AUDIT", "WAF"
1445
1469
  # resp.sources[0].sources[0].aws_log_source.source_version #=> String
1446
1470
  # resp.sources[0].sources[0].custom_log_source.attributes.crawler_arn #=> String
1447
1471
  # resp.sources[0].sources[0].custom_log_source.attributes.database_arn #=> String
@@ -1498,7 +1522,7 @@ module Aws::SecurityLake
1498
1522
  # resp.subscribers[0].role_arn #=> String
1499
1523
  # resp.subscribers[0].s3_bucket_arn #=> String
1500
1524
  # resp.subscribers[0].sources #=> Array
1501
- # resp.subscribers[0].sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA"
1525
+ # resp.subscribers[0].sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA", "EKS_AUDIT", "WAF"
1502
1526
  # resp.subscribers[0].sources[0].aws_log_source.source_version #=> String
1503
1527
  # resp.subscribers[0].sources[0].custom_log_source.attributes.crawler_arn #=> String
1504
1528
  # resp.subscribers[0].sources[0].custom_log_source.attributes.database_arn #=> String
@@ -1532,8 +1556,8 @@ module Aws::SecurityLake
1532
1556
  # Amazon Web Services Region.
1533
1557
  #
1534
1558
  # @option params [required, String] :resource_arn
1535
- # The Amazon Resource Name (ARN) of the Amazon Security Lake resource to
1536
- # retrieve the tags for.
1559
+ # The Amazon Resource Name (ARN) of the Amazon Security Lake resource
1560
+ # for which you want to retrieve the tags.
1537
1561
  #
1538
1562
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1539
1563
  #
@@ -1676,6 +1700,11 @@ module Aws::SecurityLake
1676
1700
  # Specify the Region or Regions that will contribute data to the rollup
1677
1701
  # region.
1678
1702
  #
1703
+ # @option params [String] :meta_store_manager_role_arn
1704
+ # The Amazon Resource Name (ARN) used to create and update the Glue
1705
+ # table. This table contains partitions generated by the ingestion and
1706
+ # normalization of Amazon Web Services log sources and custom sources.
1707
+ #
1679
1708
  # @return [Types::UpdateDataLakeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1680
1709
  #
1681
1710
  # * {Types::UpdateDataLakeResponse#data_lakes #data_lakes} => Array&lt;Types::DataLakeResource&gt;
@@ -1706,6 +1735,7 @@ module Aws::SecurityLake
1706
1735
  # },
1707
1736
  # },
1708
1737
  # ],
1738
+ # meta_store_manager_role_arn: "RoleArn",
1709
1739
  # })
1710
1740
  #
1711
1741
  # @example Response structure
@@ -1804,7 +1834,7 @@ module Aws::SecurityLake
1804
1834
  # sources: [
1805
1835
  # {
1806
1836
  # aws_log_source: {
1807
- # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA
1837
+ # source_name: "ROUTE53", # accepts ROUTE53, VPC_FLOW, SH_FINDINGS, CLOUD_TRAIL_MGMT, LAMBDA_EXECUTION, S3_DATA, EKS_AUDIT, WAF
1808
1838
  # source_version: "AwsLogSourceVersion",
1809
1839
  # },
1810
1840
  # custom_log_source: {
@@ -1841,7 +1871,7 @@ module Aws::SecurityLake
1841
1871
  # resp.subscriber.role_arn #=> String
1842
1872
  # resp.subscriber.s3_bucket_arn #=> String
1843
1873
  # resp.subscriber.sources #=> Array
1844
- # resp.subscriber.sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA"
1874
+ # resp.subscriber.sources[0].aws_log_source.source_name #=> String, one of "ROUTE53", "VPC_FLOW", "SH_FINDINGS", "CLOUD_TRAIL_MGMT", "LAMBDA_EXECUTION", "S3_DATA", "EKS_AUDIT", "WAF"
1845
1875
  # resp.subscriber.sources[0].aws_log_source.source_version #=> String
1846
1876
  # resp.subscriber.sources[0].custom_log_source.attributes.crawler_arn #=> String
1847
1877
  # resp.subscriber.sources[0].custom_log_source.attributes.database_arn #=> String
@@ -1927,7 +1957,7 @@ module Aws::SecurityLake
1927
1957
  params: params,
1928
1958
  config: config)
1929
1959
  context[:gem_name] = 'aws-sdk-securitylake'
1930
- context[:gem_version] = '1.16.0'
1960
+ context[:gem_version] = '1.18.0'
1931
1961
  Seahorse::Client::Request.new(handlers, context)
1932
1962
  end
1933
1963
 
@@ -208,7 +208,7 @@ module Aws::SecurityLake
208
208
  CreateAwsLogSourceResponse.add_member(:failed, Shapes::ShapeRef.new(shape: AccountList, location_name: "failed"))
209
209
  CreateAwsLogSourceResponse.struct_class = Types::CreateAwsLogSourceResponse
210
210
 
211
- CreateCustomLogSourceRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CustomLogSourceConfiguration, location_name: "configuration"))
211
+ CreateCustomLogSourceRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CustomLogSourceConfiguration, required: true, location_name: "configuration"))
212
212
  CreateCustomLogSourceRequest.add_member(:event_classes, Shapes::ShapeRef.new(shape: OcsfEventClassList, location_name: "eventClasses"))
213
213
  CreateCustomLogSourceRequest.add_member(:source_name, Shapes::ShapeRef.new(shape: CustomLogSourceName, required: true, location_name: "sourceName"))
214
214
  CreateCustomLogSourceRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: CustomLogSourceVersion, location_name: "sourceVersion"))
@@ -224,7 +224,7 @@ module Aws::SecurityLake
224
224
 
225
225
  CreateDataLakeExceptionSubscriptionResponse.struct_class = Types::CreateDataLakeExceptionSubscriptionResponse
226
226
 
227
- CreateDataLakeOrganizationConfigurationRequest.add_member(:auto_enable_new_account, Shapes::ShapeRef.new(shape: DataLakeAutoEnableNewAccountConfigurationList, required: true, location_name: "autoEnableNewAccount"))
227
+ CreateDataLakeOrganizationConfigurationRequest.add_member(:auto_enable_new_account, Shapes::ShapeRef.new(shape: DataLakeAutoEnableNewAccountConfigurationList, location_name: "autoEnableNewAccount"))
228
228
  CreateDataLakeOrganizationConfigurationRequest.struct_class = Types::CreateDataLakeOrganizationConfigurationRequest
229
229
 
230
230
  CreateDataLakeOrganizationConfigurationResponse.struct_class = Types::CreateDataLakeOrganizationConfigurationResponse
@@ -370,7 +370,7 @@ module Aws::SecurityLake
370
370
 
371
371
  DeleteDataLakeExceptionSubscriptionResponse.struct_class = Types::DeleteDataLakeExceptionSubscriptionResponse
372
372
 
373
- DeleteDataLakeOrganizationConfigurationRequest.add_member(:auto_enable_new_account, Shapes::ShapeRef.new(shape: DataLakeAutoEnableNewAccountConfigurationList, required: true, location_name: "autoEnableNewAccount"))
373
+ DeleteDataLakeOrganizationConfigurationRequest.add_member(:auto_enable_new_account, Shapes::ShapeRef.new(shape: DataLakeAutoEnableNewAccountConfigurationList, location_name: "autoEnableNewAccount"))
374
374
  DeleteDataLakeOrganizationConfigurationRequest.struct_class = Types::DeleteDataLakeOrganizationConfigurationRequest
375
375
 
376
376
  DeleteDataLakeOrganizationConfigurationResponse.struct_class = Types::DeleteDataLakeOrganizationConfigurationResponse
@@ -566,6 +566,7 @@ module Aws::SecurityLake
566
566
  UpdateDataLakeExceptionSubscriptionResponse.struct_class = Types::UpdateDataLakeExceptionSubscriptionResponse
567
567
 
568
568
  UpdateDataLakeRequest.add_member(:configurations, Shapes::ShapeRef.new(shape: DataLakeConfigurationList, required: true, location_name: "configurations"))
569
+ UpdateDataLakeRequest.add_member(:meta_store_manager_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "metaStoreManagerRoleArn"))
569
570
  UpdateDataLakeRequest.struct_class = Types::UpdateDataLakeRequest
570
571
 
571
572
  UpdateDataLakeResponse.add_member(:data_lakes, Shapes::ShapeRef.new(shape: DataLakeResourceList, location_name: "dataLakes"))
@@ -1490,7 +1490,7 @@ module Aws::SecurityLake
1490
1490
 
1491
1491
  # @!attribute [rw] resource_arn
1492
1492
  # The Amazon Resource Name (ARN) of the Amazon Security Lake resource
1493
- # to retrieve the tags for.
1493
+ # for which you want to retrieve the tags.
1494
1494
  # @return [String]
1495
1495
  #
1496
1496
  # @see http://docs.aws.amazon.com/goto/WebAPI/securitylake-2018-05-10/ListTagsForResourceRequest AWS API Documentation
@@ -1921,10 +1921,17 @@ module Aws::SecurityLake
1921
1921
  # rollup region.
1922
1922
  # @return [Array<Types::DataLakeConfiguration>]
1923
1923
  #
1924
+ # @!attribute [rw] meta_store_manager_role_arn
1925
+ # The Amazon Resource Name (ARN) used to create and update the Glue
1926
+ # table. This table contains partitions generated by the ingestion and
1927
+ # normalization of Amazon Web Services log sources and custom sources.
1928
+ # @return [String]
1929
+ #
1924
1930
  # @see http://docs.aws.amazon.com/goto/WebAPI/securitylake-2018-05-10/UpdateDataLakeRequest AWS API Documentation
1925
1931
  #
1926
1932
  class UpdateDataLakeRequest < Struct.new(
1927
- :configurations)
1933
+ :configurations,
1934
+ :meta_store_manager_role_arn)
1928
1935
  SENSITIVE = []
1929
1936
  include Aws::Structure
1930
1937
  end
@@ -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.16.0'
55
+ GEM_VERSION = '1.18.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -82,7 +82,7 @@ module Aws
82
82
  {
83
83
  accounts: Array[::String]?,
84
84
  regions: Array[::String],
85
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA"),
85
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF"),
86
86
  source_version: ::String?
87
87
  },
88
88
  ]
@@ -95,7 +95,7 @@ module Aws
95
95
  end
96
96
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityLake/Client.html#create_custom_log_source-instance_method
97
97
  def create_custom_log_source: (
98
- ?configuration: {
98
+ configuration: {
99
99
  crawler_configuration: {
100
100
  role_arn: ::String
101
101
  },
@@ -165,19 +165,19 @@ module Aws
165
165
  end
166
166
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityLake/Client.html#create_data_lake_organization_configuration-instance_method
167
167
  def create_data_lake_organization_configuration: (
168
- auto_enable_new_account: Array[
168
+ ?auto_enable_new_account: Array[
169
169
  {
170
170
  region: ::String,
171
171
  sources: Array[
172
172
  {
173
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")?,
173
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")?,
174
174
  source_version: ::String?
175
175
  },
176
176
  ]
177
177
  },
178
178
  ]
179
179
  ) -> _CreateDataLakeOrganizationConfigurationResponseSuccess
180
- | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataLakeOrganizationConfigurationResponseSuccess
180
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataLakeOrganizationConfigurationResponseSuccess
181
181
 
182
182
  interface _CreateSubscriberResponseSuccess
183
183
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateSubscriberResponse]
@@ -189,7 +189,7 @@ module Aws
189
189
  sources: Array[
190
190
  {
191
191
  aws_log_source: {
192
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")?,
192
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")?,
193
193
  source_version: ::String?
194
194
  }?,
195
195
  custom_log_source: {
@@ -253,7 +253,7 @@ module Aws
253
253
  {
254
254
  accounts: Array[::String]?,
255
255
  regions: Array[::String],
256
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA"),
256
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF"),
257
257
  source_version: ::String?
258
258
  },
259
259
  ]
@@ -292,19 +292,19 @@ module Aws
292
292
  end
293
293
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityLake/Client.html#delete_data_lake_organization_configuration-instance_method
294
294
  def delete_data_lake_organization_configuration: (
295
- auto_enable_new_account: Array[
295
+ ?auto_enable_new_account: Array[
296
296
  {
297
297
  region: ::String,
298
298
  sources: Array[
299
299
  {
300
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")?,
300
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")?,
301
301
  source_version: ::String?
302
302
  },
303
303
  ]
304
304
  },
305
305
  ]
306
306
  ) -> _DeleteDataLakeOrganizationConfigurationResponseSuccess
307
- | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataLakeOrganizationConfigurationResponseSuccess
307
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataLakeOrganizationConfigurationResponseSuccess
308
308
 
309
309
  interface _DeleteSubscriberResponseSuccess
310
310
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSubscriberResponse]
@@ -413,7 +413,7 @@ module Aws
413
413
  ?sources: Array[
414
414
  {
415
415
  aws_log_source: {
416
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")?,
416
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")?,
417
417
  source_version: ::String?
418
418
  }?,
419
419
  custom_log_source: {
@@ -518,7 +518,8 @@ module Aws
518
518
  role_arn: ::String?
519
519
  }?
520
520
  },
521
- ]
521
+ ],
522
+ ?meta_store_manager_role_arn: ::String
522
523
  ) -> _UpdateDataLakeResponseSuccess
523
524
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataLakeResponseSuccess
524
525
 
@@ -542,7 +543,7 @@ module Aws
542
543
  ?sources: Array[
543
544
  {
544
545
  aws_log_source: {
545
- source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")?,
546
+ source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")?,
546
547
  source_version: ::String?
547
548
  }?,
548
549
  custom_log_source: {
data/sig/types.rbs CHANGED
@@ -23,13 +23,13 @@ module Aws::SecurityLake
23
23
  class AwsLogSourceConfiguration
24
24
  attr_accessor accounts: ::Array[::String]
25
25
  attr_accessor regions: ::Array[::String]
26
- attr_accessor source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")
26
+ attr_accessor source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")
27
27
  attr_accessor source_version: ::String
28
28
  SENSITIVE: []
29
29
  end
30
30
 
31
31
  class AwsLogSourceResource
32
- attr_accessor source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA")
32
+ attr_accessor source_name: ("ROUTE53" | "VPC_FLOW" | "SH_FINDINGS" | "CLOUD_TRAIL_MGMT" | "LAMBDA_EXECUTION" | "S3_DATA" | "EKS_AUDIT" | "WAF")
33
33
  attr_accessor source_version: ::String
34
34
  SENSITIVE: []
35
35
  end
@@ -541,6 +541,7 @@ module Aws::SecurityLake
541
541
 
542
542
  class UpdateDataLakeRequest
543
543
  attr_accessor configurations: ::Array[Types::DataLakeConfiguration]
544
+ attr_accessor meta_store_manager_role_arn: ::String
544
545
  SENSITIVE: []
545
546
  end
546
547
 
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.16.0
4
+ version: 1.18.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-02-13 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement