aws-sdk-securityhub 1.125.0 → 1.126.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-securityhub/client.rb +17 -35
- data/lib/aws-sdk-securityhub/types.rb +365 -1582
- data/lib/aws-sdk-securityhub.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: e09383da4884e565b371f8a0c2bdc54bef0c4f5b22ad0c925028447b350d4648
|
|
4
|
+
data.tar.gz: 32bbc7013e0ad9e4dd86d0146000fce253b2b4d2282c9b3a9cb35ddff1e2a8fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e30546e166e6978d04adf01aa87dddbd288121fc1fa487bc5d1e2a988bbef1ebec1f2aed317e14b7e2d2b974636140b244ab09c92d584fc41fffbdefe889ce7
|
|
7
|
+
data.tar.gz: 993f4ae2cb4daa1c11b54075e8470a0eb6a87defabe5eafbce28d544b61ebf38865fe5dfbff71dc6f920291bef761b2a4b57711e483cada935e6831bc6d691d7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.126.0
|
|
@@ -5441,27 +5441,13 @@ module Aws::SecurityHub
|
|
|
5441
5441
|
# all of these scenarios, the response is limited to 100 results, and
|
|
5442
5442
|
# the maximum time period is limited to 90 days.
|
|
5443
5443
|
#
|
|
5444
|
-
#
|
|
5445
|
-
#
|
|
5446
|
-
# after seconds is limited to a maximum of 9 digits. The offset is
|
|
5447
|
-
# bounded by +/-18:00. Here are valid timestamp formats with examples:
|
|
5448
|
-
#
|
|
5449
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
|
5450
|
-
#
|
|
5451
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
|
5452
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
|
5453
|
-
#
|
|
5454
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
|
5455
|
-
# `2024-01-04T15:25:10+17:59`)
|
|
5456
|
-
#
|
|
5457
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759`)
|
|
5458
|
-
#
|
|
5459
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
|
5460
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
|
5444
|
+
# For more information about the validation and formatting of timestamp
|
|
5445
|
+
# fields in Security Hub, see [Timestamps][2].
|
|
5461
5446
|
#
|
|
5462
5447
|
#
|
|
5463
5448
|
#
|
|
5464
5449
|
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
|
5450
|
+
# [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
|
5465
5451
|
#
|
|
5466
5452
|
# @option params [Time,DateTime,Date,Integer,String] :end_time
|
|
5467
5453
|
# An ISO 8601-formatted timestamp that indicates the end time of the
|
|
@@ -5479,27 +5465,13 @@ module Aws::SecurityHub
|
|
|
5479
5465
|
# all of these scenarios, the response is limited to 100 results, and
|
|
5480
5466
|
# the maximum time period is limited to 90 days.
|
|
5481
5467
|
#
|
|
5482
|
-
#
|
|
5483
|
-
#
|
|
5484
|
-
# after seconds is limited to a maximum of 9 digits. The offset is
|
|
5485
|
-
# bounded by +/-18:00. Here are valid timestamp formats with examples:
|
|
5486
|
-
#
|
|
5487
|
-
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
|
5488
|
-
#
|
|
5489
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
|
5490
|
-
# `2019-01-31T23:00:00.123456789Z`)
|
|
5491
|
-
#
|
|
5492
|
-
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
|
5493
|
-
# `2024-01-04T15:25:10+17:59`)
|
|
5494
|
-
#
|
|
5495
|
-
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759`)
|
|
5496
|
-
#
|
|
5497
|
-
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
|
5498
|
-
# `2024-01-04T15:25:10.123456789+17:59`)
|
|
5468
|
+
# For more information about the validation and formatting of timestamp
|
|
5469
|
+
# fields in Security Hub, see [Timestamps][2].
|
|
5499
5470
|
#
|
|
5500
5471
|
#
|
|
5501
5472
|
#
|
|
5502
5473
|
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
|
5474
|
+
# [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
|
|
5503
5475
|
#
|
|
5504
5476
|
# @option params [String] :next_token
|
|
5505
5477
|
# A token for pagination purposes. Provide `NULL` as the initial value.
|
|
@@ -10445,6 +10417,16 @@ module Aws::SecurityHub
|
|
|
10445
10417
|
# automatically. To not automatically enable new controls, set this to
|
|
10446
10418
|
# `false`.
|
|
10447
10419
|
#
|
|
10420
|
+
# When you automatically enable new controls, you can interact with the
|
|
10421
|
+
# controls in the console and programmatically immediately after
|
|
10422
|
+
# release. However, automatically enabled controls have a temporary
|
|
10423
|
+
# default status of `DISABLED`. It can take up to several days for
|
|
10424
|
+
# Security Hub to process the control release and designate the control
|
|
10425
|
+
# as `ENABLED` in your account. During the processing period, you can
|
|
10426
|
+
# manually enable or disable a control, and Security Hub will maintain
|
|
10427
|
+
# that designation regardless of whether you have `AutoEnableControls`
|
|
10428
|
+
# set to `true`.
|
|
10429
|
+
#
|
|
10448
10430
|
# @option params [String] :control_finding_generator
|
|
10449
10431
|
# Updates whether the calling account has consolidated control findings
|
|
10450
10432
|
# turned on. If the value for this field is set to `SECURITY_CONTROL`,
|
|
@@ -10548,7 +10530,7 @@ module Aws::SecurityHub
|
|
|
10548
10530
|
tracer: tracer
|
|
10549
10531
|
)
|
|
10550
10532
|
context[:gem_name] = 'aws-sdk-securityhub'
|
|
10551
|
-
context[:gem_version] = '1.
|
|
10533
|
+
context[:gem_version] = '1.126.0'
|
|
10552
10534
|
Seahorse::Client::Request.new(handlers, context)
|
|
10553
10535
|
end
|
|
10554
10536
|
|