aws-sdk-securityhub 1.104.0 → 1.106.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-securityhub/client.rb +16 -9
- data/lib/aws-sdk-securityhub/types.rb +8 -4
- 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: 4ec24799bbcc9ea8d91dddbfafb5b3819b5d48878d518317f5a6274a7642d610
|
4
|
+
data.tar.gz: dc8553639acd3fca0be623c3e7e495bceba3b79c8c3c63e5adfd913ec060929c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1c28bbc1e6b6bb5925c3c55d41c4f29e835a1e492721e5a666f784377ea60d97ba1005b2447fb396374f0aa240108a7a3eb14a118ee22185280bc7df4ccb632
|
7
|
+
data.tar.gz: 1060862ffd0649c3ae6a7bf77dbfa959b036564f71f0ce7c5b24eecab52da74bba0abcdb93f63aff0644e65cc7bef501356df6fd0c6eff516195e37081f75fa7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.106.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.105.0 (2024-05-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated CreateMembers API request with limits.
|
13
|
+
|
4
14
|
1.104.0 (2024-04-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.106.0
|
@@ -301,8 +301,9 @@ module Aws::SecurityHub
|
|
301
301
|
#
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
303
303
|
# A unique and opaque application ID that is appended to the
|
304
|
-
# User-Agent header as app
|
305
|
-
# maximum length of 50.
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
306
307
|
#
|
307
308
|
# @option options [String] :secret_access_key
|
308
309
|
#
|
@@ -8103,8 +8104,9 @@ module Aws::SecurityHub
|
|
8103
8104
|
# Region.
|
8104
8105
|
#
|
8105
8106
|
# @option params [required, String] :configuration_policy_identifier
|
8106
|
-
# The Amazon Resource Name (ARN)
|
8107
|
-
# of
|
8107
|
+
# The Amazon Resource Name (ARN) of a configuration policy, the
|
8108
|
+
# universally unique identifier (UUID) of a configuration policy, or a
|
8109
|
+
# value of `SELF_MANAGED_SECURITY_HUB` for a self-managed configuration.
|
8108
8110
|
#
|
8109
8111
|
# @option params [required, Types::Target] :target
|
8110
8112
|
# The identifier of the target account, organizational unit, or the root
|
@@ -8188,8 +8190,9 @@ module Aws::SecurityHub
|
|
8188
8190
|
# to disassociate from the specified configuration.
|
8189
8191
|
#
|
8190
8192
|
# @option params [required, String] :configuration_policy_identifier
|
8191
|
-
# The Amazon Resource Name (ARN)
|
8192
|
-
# of
|
8193
|
+
# The Amazon Resource Name (ARN) of a configuration policy, the
|
8194
|
+
# universally unique identifier (UUID) of a configuration policy, or a
|
8195
|
+
# value of `SELF_MANAGED_SECURITY_HUB` for a self-managed configuration.
|
8193
8196
|
#
|
8194
8197
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
8195
8198
|
#
|
@@ -8656,13 +8659,17 @@ module Aws::SecurityHub
|
|
8656
8659
|
req.send_request(options)
|
8657
8660
|
end
|
8658
8661
|
|
8659
|
-
# `UpdateFindings` is deprecated. Instead of
|
8660
|
-
# `BatchUpdateFindings
|
8662
|
+
# `UpdateFindings` is a deprecated operation. Instead of
|
8663
|
+
# `UpdateFindings`, use the `BatchUpdateFindings` operation.
|
8661
8664
|
#
|
8662
8665
|
# Updates the `Note` and `RecordState` of the Security Hub-aggregated
|
8663
8666
|
# findings that the filter attributes specify. Any member account that
|
8664
8667
|
# can view the finding also sees the update to the finding.
|
8665
8668
|
#
|
8669
|
+
# Finding updates made with `UpdateFindings` might not be persisted if
|
8670
|
+
# the same finding is later updated by the finding provider through the
|
8671
|
+
# `BatchImportFindings` operation.
|
8672
|
+
#
|
8666
8673
|
# @option params [required, Types::AwsSecurityFindingFilters] :filters
|
8667
8674
|
# A collection of attributes that specify which findings you want to
|
8668
8675
|
# update.
|
@@ -10400,7 +10407,7 @@ module Aws::SecurityHub
|
|
10400
10407
|
params: params,
|
10401
10408
|
config: config)
|
10402
10409
|
context[:gem_name] = 'aws-sdk-securityhub'
|
10403
|
-
context[:gem_version] = '1.
|
10410
|
+
context[:gem_version] = '1.106.0'
|
10404
10411
|
Seahorse::Client::Request.new(handlers, context)
|
10405
10412
|
end
|
10406
10413
|
|
@@ -30058,8 +30058,10 @@ module Aws::SecurityHub
|
|
30058
30058
|
end
|
30059
30059
|
|
30060
30060
|
# @!attribute [rw] configuration_policy_identifier
|
30061
|
-
# The Amazon Resource Name (ARN)
|
30062
|
-
# (UUID) of
|
30061
|
+
# The Amazon Resource Name (ARN) of a configuration policy, the
|
30062
|
+
# universally unique identifier (UUID) of a configuration policy, or a
|
30063
|
+
# value of `SELF_MANAGED_SECURITY_HUB` for a self-managed
|
30064
|
+
# configuration.
|
30063
30065
|
# @return [String]
|
30064
30066
|
#
|
30065
30067
|
# @!attribute [rw] target
|
@@ -30130,8 +30132,10 @@ module Aws::SecurityHub
|
|
30130
30132
|
# @return [Types::Target]
|
30131
30133
|
#
|
30132
30134
|
# @!attribute [rw] configuration_policy_identifier
|
30133
|
-
# The Amazon Resource Name (ARN)
|
30134
|
-
# (UUID) of
|
30135
|
+
# The Amazon Resource Name (ARN) of a configuration policy, the
|
30136
|
+
# universally unique identifier (UUID) of a configuration policy, or a
|
30137
|
+
# value of `SELF_MANAGED_SECURITY_HUB` for a self-managed
|
30138
|
+
# configuration.
|
30135
30139
|
# @return [String]
|
30136
30140
|
#
|
30137
30141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/StartConfigurationPolicyDisassociationRequest AWS API Documentation
|
data/lib/aws-sdk-securityhub.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-securityhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.106.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-
|
11
|
+
date: 2024-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|