aws-sdk-macie2 1.37.0 → 1.41.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-macie2/client.rb +36 -16
- data/lib/aws-sdk-macie2/types.rb +22 -23
- data/lib/aws-sdk-macie2.rb +1 -1
- 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: f63c4c00ed69155355fc655057daa02d80ecc7f05b4f94ab9d3ede371b310498
|
|
4
|
+
data.tar.gz: 5400136e129fedc450ecac8f6449ffa39f009ff3cd6bd9e2d1122f7e942544dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 376718ed0c7a5bae02d5a3a2176bd6ffde6dc12bacf4fff2615dc7da0335260b09a23956f5e3430d0abed91ed38d0abf015bfbffd934c740cb9b134d47f01e3d
|
|
7
|
+
data.tar.gz: b6ebd603b55609c9eb4c5cd22f3e3c2f039d42a8df7838f501b28409e59e5314537fb93976fcf4348d3db01c4f9bf548f010fc90c8ba106e6087bcf5775a8dde
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.41.0 (2021-12-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.40.0 (2021-11-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.39.0 (2021-11-23)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Documentation updates for Amazon Macie
|
|
18
|
+
|
|
19
|
+
1.38.0 (2021-11-04)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.37.0 (2021-11-03)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.41.0
|
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
32
33
|
|
|
@@ -73,6 +74,7 @@ module Aws::Macie2
|
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
78
80
|
|
|
@@ -119,7 +121,9 @@ module Aws::Macie2
|
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
126
|
+
# to true.
|
|
123
127
|
#
|
|
124
128
|
# @option options [required, String] :region
|
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -173,6 +177,10 @@ module Aws::Macie2
|
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
175
179
|
#
|
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
|
183
|
+
#
|
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
|
178
186
|
# to default service endpoint when available.
|
|
@@ -275,6 +283,15 @@ module Aws::Macie2
|
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
276
284
|
# requests are made, and retries are disabled.
|
|
277
285
|
#
|
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
288
|
+
# will be used if available.
|
|
289
|
+
#
|
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
293
|
+
# is set to `true`.
|
|
294
|
+
#
|
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
|
279
296
|
# When `true`, request parameters are validated before
|
|
280
297
|
# sending the request.
|
|
@@ -286,7 +303,7 @@ module Aws::Macie2
|
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
|
287
304
|
# `Timeout::Error`.
|
|
288
305
|
#
|
|
289
|
-
# @option options [
|
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
290
307
|
# number of seconds to wait for response data. This value can
|
|
291
308
|
# safely be set per-request on the session.
|
|
292
309
|
#
|
|
@@ -302,6 +319,9 @@ module Aws::Macie2
|
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
|
303
320
|
# request on the session.
|
|
304
321
|
#
|
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
323
|
+
# in seconds.
|
|
324
|
+
#
|
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
|
307
327
|
#
|
|
@@ -1174,8 +1194,8 @@ module Aws::Macie2
|
|
|
1174
1194
|
req.send_request(options)
|
|
1175
1195
|
end
|
|
1176
1196
|
|
|
1177
|
-
# Retrieves the Amazon Macie configuration settings for an
|
|
1178
|
-
#
|
|
1197
|
+
# Retrieves the Amazon Macie configuration settings for an organization
|
|
1198
|
+
# in Organizations.
|
|
1179
1199
|
#
|
|
1180
1200
|
# @return [Types::DescribeOrganizationConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1181
1201
|
#
|
|
@@ -1196,8 +1216,8 @@ module Aws::Macie2
|
|
|
1196
1216
|
req.send_request(options)
|
|
1197
1217
|
end
|
|
1198
1218
|
|
|
1199
|
-
# Disables
|
|
1200
|
-
# account.
|
|
1219
|
+
# Disables Amazon Macie and deletes all settings and resources for a
|
|
1220
|
+
# Macie account.
|
|
1201
1221
|
#
|
|
1202
1222
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1203
1223
|
#
|
|
@@ -1211,7 +1231,7 @@ module Aws::Macie2
|
|
|
1211
1231
|
end
|
|
1212
1232
|
|
|
1213
1233
|
# Disables an account as the delegated Amazon Macie administrator
|
|
1214
|
-
# account for an
|
|
1234
|
+
# account for an organization in Organizations.
|
|
1215
1235
|
#
|
|
1216
1236
|
# @option params [required, String] :admin_account_id
|
|
1217
1237
|
#
|
|
@@ -1326,7 +1346,7 @@ module Aws::Macie2
|
|
|
1326
1346
|
end
|
|
1327
1347
|
|
|
1328
1348
|
# Designates an account as the delegated Amazon Macie administrator
|
|
1329
|
-
# account for an
|
|
1349
|
+
# account for an organization in Organizations.
|
|
1330
1350
|
#
|
|
1331
1351
|
# @option params [required, String] :admin_account_id
|
|
1332
1352
|
#
|
|
@@ -1375,8 +1395,8 @@ module Aws::Macie2
|
|
|
1375
1395
|
req.send_request(options)
|
|
1376
1396
|
end
|
|
1377
1397
|
|
|
1378
|
-
# Retrieves (queries) aggregated statistical data
|
|
1379
|
-
#
|
|
1398
|
+
# Retrieves (queries) aggregated statistical data about S3 buckets that
|
|
1399
|
+
# Amazon Macie monitors and analyzes.
|
|
1380
1400
|
#
|
|
1381
1401
|
# @option params [String] :account_id
|
|
1382
1402
|
#
|
|
@@ -2427,7 +2447,7 @@ module Aws::Macie2
|
|
|
2427
2447
|
end
|
|
2428
2448
|
|
|
2429
2449
|
# Retrieves information about the delegated Amazon Macie administrator
|
|
2430
|
-
# account for an
|
|
2450
|
+
# account for an organization in Organizations.
|
|
2431
2451
|
#
|
|
2432
2452
|
# @option params [Integer] :max_results
|
|
2433
2453
|
#
|
|
@@ -2871,8 +2891,8 @@ module Aws::Macie2
|
|
|
2871
2891
|
req.send_request(options)
|
|
2872
2892
|
end
|
|
2873
2893
|
|
|
2874
|
-
# Suspends or re-enables
|
|
2875
|
-
#
|
|
2894
|
+
# Suspends or re-enables Amazon Macie, or updates the configuration
|
|
2895
|
+
# settings for a Macie account.
|
|
2876
2896
|
#
|
|
2877
2897
|
# @option params [String] :finding_publishing_frequency
|
|
2878
2898
|
# The frequency with which Amazon Macie publishes updates to policy
|
|
@@ -2932,8 +2952,8 @@ module Aws::Macie2
|
|
|
2932
2952
|
req.send_request(options)
|
|
2933
2953
|
end
|
|
2934
2954
|
|
|
2935
|
-
# Updates the Amazon Macie configuration settings for an
|
|
2936
|
-
#
|
|
2955
|
+
# Updates the Amazon Macie configuration settings for an organization in
|
|
2956
|
+
# Organizations.
|
|
2937
2957
|
#
|
|
2938
2958
|
# @option params [required, Boolean] :auto_enable
|
|
2939
2959
|
#
|
|
@@ -2967,7 +2987,7 @@ module Aws::Macie2
|
|
|
2967
2987
|
params: params,
|
|
2968
2988
|
config: config)
|
|
2969
2989
|
context[:gem_name] = 'aws-sdk-macie2'
|
|
2970
|
-
context[:gem_version] = '1.
|
|
2990
|
+
context[:gem_version] = '1.41.0'
|
|
2971
2991
|
Seahorse::Client::Request.new(handlers, context)
|
|
2972
2992
|
end
|
|
2973
2993
|
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
|
@@ -132,15 +132,15 @@ module Aws::Macie2
|
|
|
132
132
|
end
|
|
133
133
|
|
|
134
134
|
# Provides information about the delegated Amazon Macie administrator
|
|
135
|
-
# account for an
|
|
135
|
+
# account for an organization in Organizations.
|
|
136
136
|
#
|
|
137
137
|
# @!attribute [rw] account_id
|
|
138
138
|
# @return [String]
|
|
139
139
|
#
|
|
140
140
|
# @!attribute [rw] status
|
|
141
141
|
# The current status of an account as the delegated Amazon Macie
|
|
142
|
-
# administrator account for an
|
|
143
|
-
#
|
|
142
|
+
# administrator account for an organization in Organizations. Possible
|
|
143
|
+
# values are:
|
|
144
144
|
# @return [String]
|
|
145
145
|
#
|
|
146
146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/AdminAccount AWS API Documentation
|
|
@@ -1376,7 +1376,12 @@ module Aws::Macie2
|
|
|
1376
1376
|
include Aws::Structure
|
|
1377
1377
|
end
|
|
1378
1378
|
|
|
1379
|
-
# Specifies the settings for an Amazon Macie membership invitation.
|
|
1379
|
+
# Specifies the settings for an Amazon Macie membership invitation. When
|
|
1380
|
+
# you send an invitation, Macie notifies the recipient by creating an
|
|
1381
|
+
# Health event for the recipient's account and, if Macie is already
|
|
1382
|
+
# enabled for the account, displaying an **Accounts** badge and
|
|
1383
|
+
# notification on the recipient's console. You can optionally notify
|
|
1384
|
+
# the recipient by also sending the invitation as an email message.
|
|
1380
1385
|
#
|
|
1381
1386
|
# @note When making an API call, you may pass CreateInvitationsRequest
|
|
1382
1387
|
# data as a hash:
|
|
@@ -2106,7 +2111,7 @@ module Aws::Macie2
|
|
|
2106
2111
|
class DescribeOrganizationConfigurationRequest < Aws::EmptyStructure; end
|
|
2107
2112
|
|
|
2108
2113
|
# Provides information about the Amazon Macie configuration settings for
|
|
2109
|
-
# an
|
|
2114
|
+
# an organization in Organizations.
|
|
2110
2115
|
#
|
|
2111
2116
|
# @!attribute [rw] auto_enable
|
|
2112
2117
|
# @return [Boolean]
|
|
@@ -2266,10 +2271,10 @@ module Aws::Macie2
|
|
|
2266
2271
|
#
|
|
2267
2272
|
class EnableMacieResponse < Aws::EmptyStructure; end
|
|
2268
2273
|
|
|
2269
|
-
# Specifies an account to designate as
|
|
2270
|
-
# administrator account for an
|
|
2271
|
-
#
|
|
2272
|
-
#
|
|
2274
|
+
# Specifies an account to designate as the delegated Amazon Macie
|
|
2275
|
+
# administrator account for an organization in Organizations. To submit
|
|
2276
|
+
# this request, you must be a user of the Organizations management
|
|
2277
|
+
# account.
|
|
2273
2278
|
#
|
|
2274
2279
|
# @note When making an API call, you may pass EnableOrganizationAdminAccountRequest
|
|
2275
2280
|
# data as a hash:
|
|
@@ -2594,8 +2599,7 @@ module Aws::Macie2
|
|
|
2594
2599
|
# invitation.
|
|
2595
2600
|
#
|
|
2596
2601
|
# @!attribute [rw] administrator
|
|
2597
|
-
# Provides information about an Amazon Macie membership invitation
|
|
2598
|
-
# that was received by an account.
|
|
2602
|
+
# Provides information about an Amazon Macie membership invitation.
|
|
2599
2603
|
# @return [Types::Invitation]
|
|
2600
2604
|
#
|
|
2601
2605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetAdministratorAccountResponse AWS API Documentation
|
|
@@ -3129,8 +3133,7 @@ module Aws::Macie2
|
|
|
3129
3133
|
# that invitation.
|
|
3130
3134
|
#
|
|
3131
3135
|
# @!attribute [rw] master
|
|
3132
|
-
# Provides information about an Amazon Macie membership invitation
|
|
3133
|
-
# that was received by an account.
|
|
3136
|
+
# Provides information about an Amazon Macie membership invitation.
|
|
3134
3137
|
# @return [Types::Invitation]
|
|
3135
3138
|
#
|
|
3136
3139
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/GetMasterAccountResponse AWS API Documentation
|
|
@@ -3182,8 +3185,7 @@ module Aws::Macie2
|
|
|
3182
3185
|
#
|
|
3183
3186
|
# @!attribute [rw] relationship_status
|
|
3184
3187
|
# The current status of the relationship between an account and an
|
|
3185
|
-
# associated Amazon Macie administrator account
|
|
3186
|
-
# Possible values are:
|
|
3188
|
+
# associated Amazon Macie administrator account. Possible values are:
|
|
3187
3189
|
# @return [String]
|
|
3188
3190
|
#
|
|
3189
3191
|
# @!attribute [rw] tags
|
|
@@ -3386,8 +3388,7 @@ module Aws::Macie2
|
|
|
3386
3388
|
include Aws::Structure
|
|
3387
3389
|
end
|
|
3388
3390
|
|
|
3389
|
-
# Provides information about an Amazon Macie membership invitation
|
|
3390
|
-
# was received by an account.
|
|
3391
|
+
# Provides information about an Amazon Macie membership invitation.
|
|
3391
3392
|
#
|
|
3392
3393
|
# @!attribute [rw] account_id
|
|
3393
3394
|
# @return [String]
|
|
@@ -3400,8 +3401,7 @@ module Aws::Macie2
|
|
|
3400
3401
|
#
|
|
3401
3402
|
# @!attribute [rw] relationship_status
|
|
3402
3403
|
# The current status of the relationship between an account and an
|
|
3403
|
-
# associated Amazon Macie administrator account
|
|
3404
|
-
# Possible values are:
|
|
3404
|
+
# associated Amazon Macie administrator account. Possible values are:
|
|
3405
3405
|
# @return [String]
|
|
3406
3406
|
#
|
|
3407
3407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie2-2020-01-01/Invitation AWS API Documentation
|
|
@@ -4273,7 +4273,7 @@ module Aws::Macie2
|
|
|
4273
4273
|
end
|
|
4274
4274
|
|
|
4275
4275
|
# Provides information about the delegated Amazon Macie administrator
|
|
4276
|
-
# accounts for an
|
|
4276
|
+
# accounts for an organization in Organizations.
|
|
4277
4277
|
#
|
|
4278
4278
|
# @!attribute [rw] admin_accounts
|
|
4279
4279
|
# @return [Array<Types::AdminAccount>]
|
|
@@ -4490,8 +4490,7 @@ module Aws::Macie2
|
|
|
4490
4490
|
#
|
|
4491
4491
|
# @!attribute [rw] relationship_status
|
|
4492
4492
|
# The current status of the relationship between an account and an
|
|
4493
|
-
# associated Amazon Macie administrator account
|
|
4494
|
-
# Possible values are:
|
|
4493
|
+
# associated Amazon Macie administrator account. Possible values are:
|
|
4495
4494
|
# @return [String]
|
|
4496
4495
|
#
|
|
4497
4496
|
# @!attribute [rw] tags
|
|
@@ -6560,7 +6559,7 @@ module Aws::Macie2
|
|
|
6560
6559
|
class UpdateMemberSessionResponse < Aws::EmptyStructure; end
|
|
6561
6560
|
|
|
6562
6561
|
# Specifies whether to enable Amazon Macie automatically for accounts
|
|
6563
|
-
# that are added to an
|
|
6562
|
+
# that are added to an organization in Organizations.
|
|
6564
6563
|
#
|
|
6565
6564
|
# @note When making an API call, you may pass UpdateOrganizationConfigurationRequest
|
|
6566
6565
|
# data as a hash:
|
data/lib/aws-sdk-macie2.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-macie2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.41.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: 2021-
|
|
11
|
+
date: 2021-12-21 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.125.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.125.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|