aws-sdk-securityhub 1.125.0 → 1.127.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: de7a97710fa19d2831976c34686fcf42ac2aa8862a952250fe6ddb5a1da71d56
4
- data.tar.gz: 97a286fab1efd51236deca4bdf12fc8fa05aea4fd3bd2c6597e50702776bf96a
3
+ metadata.gz: 8826b5d9a7b2d6b6cf23bb360cb27f2a99496dce388f1b8fd2e2bc7543a693bc
4
+ data.tar.gz: ecf07121cc127cbab1c5a6b9ad817b6c1931ff74e16e1f46970e5ced2504fae2
5
5
  SHA512:
6
- metadata.gz: 6121d183495b188124195a040ed3519f52e28eaa9921b051f718ff161dbeb28926cf16502b9e7f6503fd99d2ebe5958d9dca9a4eee54c686a7d2946beb2e2edd
7
- data.tar.gz: 71edb3847906c9440daa86a3edc7a2b4edd4f7ac8859df09f4c34b410fc7c298824b8059f01a9e2c5f29e33a35513049372c958264d5661df9cd8fdeb7ed4739
6
+ metadata.gz: 632df83d04b70595038a68e5531ed63faa96ed01fe84c4720f7d5c1d639eae07c6463a79e0f21fef81d020c6bc6ee19ed1411bdfbab8cd04a7f4eea96e58ad4d
7
+ data.tar.gz: dc1c60ab428bf4dfd102c2c7f9bba0780d0a474910d0e77f2f5e2a6603a2c33711bc3dc17e77570f3e3211b5c6963f97e6839ca67e4848f71c63dc679af97669
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.127.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.126.0 (2024-12-26)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for AWS Security Hub
13
+
4
14
  1.125.0 (2024-12-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.125.0
1
+ 1.127.0
@@ -257,11 +257,34 @@ module Aws::SecurityHub
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.
@@ -5441,27 +5464,13 @@ module Aws::SecurityHub
5441
5464
  # all of these scenarios, the response is limited to 100 results, and
5442
5465
  # the maximum time period is limited to 90 days.
5443
5466
  #
5444
- # This field accepts only the specified formats. Timestamps can end with
5445
- # `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac
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`)
5467
+ # For more information about the validation and formatting of timestamp
5468
+ # fields in Security Hub, see [Timestamps][2].
5461
5469
  #
5462
5470
  #
5463
5471
  #
5464
5472
  # [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
5473
+ # [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
5465
5474
  #
5466
5475
  # @option params [Time,DateTime,Date,Integer,String] :end_time
5467
5476
  # An ISO 8601-formatted timestamp that indicates the end time of the
@@ -5479,27 +5488,13 @@ module Aws::SecurityHub
5479
5488
  # all of these scenarios, the response is limited to 100 results, and
5480
5489
  # the maximum time period is limited to 90 days.
5481
5490
  #
5482
- # This field accepts only the specified formats. Timestamps can end with
5483
- # `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac
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`)
5491
+ # For more information about the validation and formatting of timestamp
5492
+ # fields in Security Hub, see [Timestamps][2].
5499
5493
  #
5500
5494
  #
5501
5495
  #
5502
5496
  # [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
5497
+ # [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/Welcome.html#timestamps
5503
5498
  #
5504
5499
  # @option params [String] :next_token
5505
5500
  # A token for pagination purposes. Provide `NULL` as the initial value.
@@ -10445,6 +10440,16 @@ module Aws::SecurityHub
10445
10440
  # automatically. To not automatically enable new controls, set this to
10446
10441
  # `false`.
10447
10442
  #
10443
+ # When you automatically enable new controls, you can interact with the
10444
+ # controls in the console and programmatically immediately after
10445
+ # release. However, automatically enabled controls have a temporary
10446
+ # default status of `DISABLED`. It can take up to several days for
10447
+ # Security Hub to process the control release and designate the control
10448
+ # as `ENABLED` in your account. During the processing period, you can
10449
+ # manually enable or disable a control, and Security Hub will maintain
10450
+ # that designation regardless of whether you have `AutoEnableControls`
10451
+ # set to `true`.
10452
+ #
10448
10453
  # @option params [String] :control_finding_generator
10449
10454
  # Updates whether the calling account has consolidated control findings
10450
10455
  # turned on. If the value for this field is set to `SECURITY_CONTROL`,
@@ -10548,7 +10553,7 @@ module Aws::SecurityHub
10548
10553
  tracer: tracer
10549
10554
  )
10550
10555
  context[:gem_name] = 'aws-sdk-securityhub'
10551
- context[:gem_version] = '1.125.0'
10556
+ context[:gem_version] = '1.127.0'
10552
10557
  Seahorse::Client::Request.new(handlers, context)
10553
10558
  end
10554
10559