aws-sdk-guardduty 1.108.0 → 1.110.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-guardduty/client.rb +34 -7
- data/lib/aws-sdk-guardduty/types.rb +23 -12
- data/lib/aws-sdk-guardduty.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b29730c7158a0317f34209b1ab25491495b7dc38cb1a65aad728bf6524304a3f
|
4
|
+
data.tar.gz: 5b13fdf52f140753be04cca7b9b1c29ac5289e44c2a4827e0aa48674b2fd9156
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54722925241be1d5de11a33273f13974ba3f0e2abd586b9d20be818518caf20c30a82944f0195ee135e2d369f4b28bf1aa71dd8933f31874f6b517cdb73ab9b7
|
7
|
+
data.tar.gz: 5c6a79da6dbe63f958b591137b098fbd94c4ed17e4d4f63c196eb020c308bdf23ec407b5da2a7ec1e67d0f3718c2e2fa8402530bf50454c2e286e690d1aaed44
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.109.0 (2024-12-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Improved descriptions for certain APIs.
|
13
|
+
|
4
14
|
1.108.0 (2024-12-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
@@ -257,11 +257,34 @@ module Aws::GuardDuty
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -740,9 +763,11 @@ module Aws::GuardDuty
|
|
740
763
|
#
|
741
764
|
# * **Medium**: `["4", "5", "6"]`
|
742
765
|
#
|
743
|
-
# * **High**: `["7", "8"
|
744
|
-
#
|
745
|
-
#
|
766
|
+
# * **High**: `["7", "8"]`
|
767
|
+
#
|
768
|
+
# * **Critical**: `["9", "10"]`
|
769
|
+
# For more information, see [Findings severity levels][2] in the
|
770
|
+
# *Amazon GuardDuty User Guide*.
|
746
771
|
#
|
747
772
|
# * type
|
748
773
|
#
|
@@ -933,7 +958,7 @@ module Aws::GuardDuty
|
|
933
958
|
#
|
934
959
|
#
|
935
960
|
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_FindingCriteria.html
|
936
|
-
# [2]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_findings.html
|
961
|
+
# [2]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_findings-severity.html
|
937
962
|
#
|
938
963
|
# @option params [String] :client_token
|
939
964
|
# The idempotency token for the create request.
|
@@ -5328,8 +5353,10 @@ module Aws::GuardDuty
|
|
5328
5353
|
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html
|
5329
5354
|
#
|
5330
5355
|
# @option params [Boolean] :auto_enable
|
5331
|
-
# Represents whether
|
5332
|
-
#
|
5356
|
+
# Represents whether to automatically enable member accounts in the
|
5357
|
+
# organization. This applies to only new member accounts, not the
|
5358
|
+
# existing member accounts. When a new account joins the organization,
|
5359
|
+
# the chosen features will be enabled for them by default.
|
5333
5360
|
#
|
5334
5361
|
# Even though this is still supported, we recommend using
|
5335
5362
|
# `AutoEnableOrganizationMembers` to achieve the similar results. You
|
@@ -5530,7 +5557,7 @@ module Aws::GuardDuty
|
|
5530
5557
|
tracer: tracer
|
5531
5558
|
)
|
5532
5559
|
context[:gem_name] = 'aws-sdk-guardduty'
|
5533
|
-
context[:gem_version] = '1.
|
5560
|
+
context[:gem_version] = '1.110.0'
|
5534
5561
|
Seahorse::Client::Request.new(handlers, context)
|
5535
5562
|
end
|
5536
5563
|
|
@@ -1367,9 +1367,11 @@ module Aws::GuardDuty
|
|
1367
1367
|
#
|
1368
1368
|
# * **Medium**: `["4", "5", "6"]`
|
1369
1369
|
#
|
1370
|
-
# * **High**: `["7", "8"
|
1371
|
-
#
|
1372
|
-
#
|
1370
|
+
# * **High**: `["7", "8"]`
|
1371
|
+
#
|
1372
|
+
# * **Critical**: `["9", "10"]`
|
1373
|
+
# For more information, see [Findings severity levels][2] in the
|
1374
|
+
# *Amazon GuardDuty User Guide*.
|
1373
1375
|
#
|
1374
1376
|
# * type
|
1375
1377
|
#
|
@@ -1560,7 +1562,7 @@ module Aws::GuardDuty
|
|
1560
1562
|
#
|
1561
1563
|
#
|
1562
1564
|
# [1]: https://docs.aws.amazon.com/guardduty/latest/APIReference/API_FindingCriteria.html
|
1563
|
-
# [2]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_findings.html
|
1565
|
+
# [2]: https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_findings-severity.html
|
1564
1566
|
# @return [Types::FindingCriteria]
|
1565
1567
|
#
|
1566
1568
|
# @!attribute [rw] client_token
|
@@ -2441,7 +2443,8 @@ module Aws::GuardDuty
|
|
2441
2443
|
end
|
2442
2444
|
|
2443
2445
|
# @!attribute [rw] scans
|
2444
|
-
# Contains information about malware scans
|
2446
|
+
# Contains information about malware scans associated with GuardDuty
|
2447
|
+
# Malware Protection for EC2.
|
2445
2448
|
# @return [Array<Types::Scan>]
|
2446
2449
|
#
|
2447
2450
|
# @!attribute [rw] next_token
|
@@ -6595,9 +6598,13 @@ module Aws::GuardDuty
|
|
6595
6598
|
# A list of additional configurations which will be configured for the
|
6596
6599
|
# organization.
|
6597
6600
|
#
|
6601
|
+
# Additional configuration applies to only GuardDuty Runtime Monitoring
|
6602
|
+
# protection plan.
|
6603
|
+
#
|
6598
6604
|
# @!attribute [rw] name
|
6599
6605
|
# The name of the additional configuration that will be configured for
|
6600
|
-
# the organization.
|
6606
|
+
# the organization. These values are applicable to only Runtime
|
6607
|
+
# Monitoring protection plan.
|
6601
6608
|
# @return [String]
|
6602
6609
|
#
|
6603
6610
|
# @!attribute [rw] auto_enable
|
@@ -6636,7 +6643,8 @@ module Aws::GuardDuty
|
|
6636
6643
|
#
|
6637
6644
|
# @!attribute [rw] name
|
6638
6645
|
# The name of the additional configuration that is configured for the
|
6639
|
-
# member accounts within the organization.
|
6646
|
+
# member accounts within the organization. These values are applicable
|
6647
|
+
# to only Runtime Monitoring protection plan.
|
6640
6648
|
# @return [String]
|
6641
6649
|
#
|
6642
6650
|
# @!attribute [rw] auto_enable
|
@@ -8249,10 +8257,11 @@ module Aws::GuardDuty
|
|
8249
8257
|
include Aws::Structure
|
8250
8258
|
end
|
8251
8259
|
|
8252
|
-
# Contains information about
|
8260
|
+
# Contains information about malware scans associated with GuardDuty
|
8261
|
+
# Malware Protection for EC2.
|
8253
8262
|
#
|
8254
8263
|
# @!attribute [rw] detector_id
|
8255
|
-
# The unique ID of the detector that
|
8264
|
+
# The unique ID of the detector that is associated with the request.
|
8256
8265
|
#
|
8257
8266
|
# To find the `detectorId` in the current Region, see the Settings
|
8258
8267
|
# page in the GuardDuty console, or run the [ListDetectors][1] API.
|
@@ -8284,7 +8293,7 @@ module Aws::GuardDuty
|
|
8284
8293
|
# @return [String]
|
8285
8294
|
#
|
8286
8295
|
# @!attribute [rw] failure_reason
|
8287
|
-
# Represents the reason for FAILED scan status.
|
8296
|
+
# Represents the reason for `FAILED` scan status.
|
8288
8297
|
# @return [String]
|
8289
8298
|
#
|
8290
8299
|
# @!attribute [rw] scan_start_time
|
@@ -9663,8 +9672,10 @@ module Aws::GuardDuty
|
|
9663
9672
|
# @return [String]
|
9664
9673
|
#
|
9665
9674
|
# @!attribute [rw] auto_enable
|
9666
|
-
# Represents whether
|
9667
|
-
#
|
9675
|
+
# Represents whether to automatically enable member accounts in the
|
9676
|
+
# organization. This applies to only new member accounts, not the
|
9677
|
+
# existing member accounts. When a new account joins the organization,
|
9678
|
+
# the chosen features will be enabled for them by default.
|
9668
9679
|
#
|
9669
9680
|
# Even though this is still supported, we recommend using
|
9670
9681
|
# `AutoEnableOrganizationMembers` to achieve the similar results. You
|
data/lib/aws-sdk-guardduty.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-guardduty
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.110.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:
|
11
|
+
date: 2025-01-15 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.
|
22
|
+
version: 3.216.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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|