aws-sdk-securityhub 1.102.0 → 1.103.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 +44 -16
- data/lib/aws-sdk-securityhub/types.rb +1582 -504
- 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: 0a78ea4ba60cd23828384c55b157f2edd5729a4152bff20d41ab945c0ec12590
|
4
|
+
data.tar.gz: fd293a2932b9744f85e10e155a519b510414538c669392a23d4d878ada75814e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b36231cce2f8094c6d5b9737acd822647e278a9e035909d9fefafd8b058326b446f6c09c3dad61b602e086b9b84152a554031b32c86c2096d43c133383dbd09
|
7
|
+
data.tar.gz: c719b72a8b2985e94be95317f62057ced3e0644dac3d60c2dd2d39b29fef01351e0c9f6a3231fb390c98e19867ec4df5dcd98fc8fb0a722bcd6b0c969bd1be15
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
@@ -5311,52 +5311,80 @@ module Aws::SecurityHub
|
|
5311
5311
|
# Identifies which finding to get the finding history for.
|
5312
5312
|
#
|
5313
5313
|
# @option params [Time,DateTime,Date,Integer,String] :start_time
|
5314
|
-
#
|
5315
|
-
#
|
5316
|
-
# `2020-05-21T20:16:34.724Z`. The value cannot contain spaces, and date
|
5317
|
-
# and time should be separated by `T`. For more information, see [RFC
|
5318
|
-
# 3339 section 5.6, Internet Date/Time Format][1].
|
5314
|
+
# A timestamp that indicates the start time of the requested finding
|
5315
|
+
# history.
|
5319
5316
|
#
|
5320
5317
|
# If you provide values for both `StartTime` and `EndTime`, Security Hub
|
5321
5318
|
# returns finding history for the specified time period. If you provide
|
5322
5319
|
# a value for `StartTime` but not for `EndTime`, Security Hub returns
|
5323
5320
|
# finding history from the `StartTime` to the time at which the API is
|
5324
5321
|
# called. If you provide a value for `EndTime` but not for `StartTime`,
|
5325
|
-
# Security Hub returns finding history from the [CreatedAt][
|
5322
|
+
# Security Hub returns finding history from the [CreatedAt][1] timestamp
|
5326
5323
|
# of the finding to the `EndTime`. If you provide neither `StartTime`
|
5327
5324
|
# nor `EndTime`, Security Hub returns finding history from the CreatedAt
|
5328
5325
|
# timestamp of the finding to the time at which the API is called. In
|
5329
5326
|
# all of these scenarios, the response is limited to 100 results, and
|
5330
5327
|
# the maximum time period is limited to 90 days.
|
5331
5328
|
#
|
5329
|
+
# This field accepts only the specified formats. Timestamps can end with
|
5330
|
+
# `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac
|
5331
|
+
# after seconds is limited to a maximum of 9 digits. The offset is
|
5332
|
+
# bounded by +/-18:00. Here are valid timestamp formats with examples:
|
5332
5333
|
#
|
5334
|
+
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
5333
5335
|
#
|
5334
|
-
#
|
5335
|
-
#
|
5336
|
+
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
5337
|
+
# `2019-01-31T23:00:00.123456789Z`)
|
5338
|
+
#
|
5339
|
+
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
5340
|
+
# `2024-01-04T15:25:10+17:59`)
|
5341
|
+
#
|
5342
|
+
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759`)
|
5343
|
+
#
|
5344
|
+
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
5345
|
+
# `2024-01-04T15:25:10.123456789+17:59`)
|
5346
|
+
#
|
5347
|
+
#
|
5348
|
+
#
|
5349
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
5336
5350
|
#
|
5337
5351
|
# @option params [Time,DateTime,Date,Integer,String] :end_time
|
5338
5352
|
# An ISO 8601-formatted timestamp that indicates the end time of the
|
5339
|
-
# requested finding history.
|
5340
|
-
# `2020-05-21T20:16:34.724Z`. The value cannot contain spaces, and date
|
5341
|
-
# and time should be separated by `T`. For more information, see [RFC
|
5342
|
-
# 3339 section 5.6, Internet Date/Time Format][1].
|
5353
|
+
# requested finding history.
|
5343
5354
|
#
|
5344
5355
|
# If you provide values for both `StartTime` and `EndTime`, Security Hub
|
5345
5356
|
# returns finding history for the specified time period. If you provide
|
5346
5357
|
# a value for `StartTime` but not for `EndTime`, Security Hub returns
|
5347
5358
|
# finding history from the `StartTime` to the time at which the API is
|
5348
5359
|
# called. If you provide a value for `EndTime` but not for `StartTime`,
|
5349
|
-
# Security Hub returns finding history from the [CreatedAt][
|
5360
|
+
# Security Hub returns finding history from the [CreatedAt][1] timestamp
|
5350
5361
|
# of the finding to the `EndTime`. If you provide neither `StartTime`
|
5351
5362
|
# nor `EndTime`, Security Hub returns finding history from the CreatedAt
|
5352
5363
|
# timestamp of the finding to the time at which the API is called. In
|
5353
5364
|
# all of these scenarios, the response is limited to 100 results, and
|
5354
5365
|
# the maximum time period is limited to 90 days.
|
5355
5366
|
#
|
5367
|
+
# This field accepts only the specified formats. Timestamps can end with
|
5368
|
+
# `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac
|
5369
|
+
# after seconds is limited to a maximum of 9 digits. The offset is
|
5370
|
+
# bounded by +/-18:00. Here are valid timestamp formats with examples:
|
5371
|
+
#
|
5372
|
+
# * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
|
5373
|
+
#
|
5374
|
+
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
|
5375
|
+
# `2019-01-31T23:00:00.123456789Z`)
|
5376
|
+
#
|
5377
|
+
# * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
|
5378
|
+
# `2024-01-04T15:25:10+17:59`)
|
5379
|
+
#
|
5380
|
+
# * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759`)
|
5381
|
+
#
|
5382
|
+
# * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
|
5383
|
+
# `2024-01-04T15:25:10.123456789+17:59`)
|
5384
|
+
#
|
5356
5385
|
#
|
5357
5386
|
#
|
5358
|
-
# [1]: https://
|
5359
|
-
# [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
5387
|
+
# [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
|
5360
5388
|
#
|
5361
5389
|
# @option params [String] :next_token
|
5362
5390
|
# A token for pagination purposes. Provide `NULL` as the initial value.
|
@@ -10348,7 +10376,7 @@ module Aws::SecurityHub
|
|
10348
10376
|
params: params,
|
10349
10377
|
config: config)
|
10350
10378
|
context[:gem_name] = 'aws-sdk-securityhub'
|
10351
|
-
context[:gem_version] = '1.
|
10379
|
+
context[:gem_version] = '1.103.0'
|
10352
10380
|
Seahorse::Client::Request.new(handlers, context)
|
10353
10381
|
end
|
10354
10382
|
|