aws-sdk-macie 1.16.0 → 1.21.1
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 +5 -5
- data/lib/aws-sdk-macie.rb +7 -4
- data/lib/aws-sdk-macie/client.rb +112 -50
- data/lib/aws-sdk-macie/errors.rb +26 -4
- data/lib/aws-sdk-macie/resource.rb +1 -0
- data/lib/aws-sdk-macie/types.rb +39 -38
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d66edf939a9bfb23f969807b38f6f2c9d4eae23c2bfca7daf1bd7bd0ffb6fd78
|
4
|
+
data.tar.gz: 825434dc57304f1bc3711f02fff4864eeacf38aa9be1b07a31cfe351ea3d6df9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cacb976afc278a9b589872cf81308aaf1f3d77ea64333150aad612f3927181e738aaabc99b22196ab92b734a5828884ce80036295584b8988079c865540cf184
|
7
|
+
data.tar.gz: ddb8d3c52c532db6dbf8ed343442d49a21479651744a1e4b089a81c48bac8946b5a7dc38338bf0fe5e2428179cd78fcd81df372db712b314bef62f86ec8d06fd
|
data/lib/aws-sdk-macie.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-macie/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# macie = Aws::Macie::Client.new
|
28
|
+
# resp = macie.associate_member_account(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon Macie
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon Macie are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::Macie::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon Macie API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-macie/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::Macie
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.21.1'
|
46
49
|
|
47
50
|
end
|
data/lib/aws-sdk-macie/client.rb
CHANGED
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
30
|
|
30
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:macie)
|
31
32
|
|
32
33
|
module Aws::Macie
|
34
|
+
# An API client for Macie. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::Macie::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
46
|
class Client < Seahorse::Client::Base
|
34
47
|
|
35
48
|
include Aws::ClientStubs
|
@@ -57,6 +70,7 @@ module Aws::Macie
|
|
57
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
75
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
76
|
|
@@ -93,7 +107,7 @@ module Aws::Macie
|
|
93
107
|
# @option options [required, String] :region
|
94
108
|
# The AWS region to connect to. The configured `:region` is
|
95
109
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
97
111
|
#
|
98
112
|
# * `Aws.config[:region]`
|
99
113
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +122,12 @@ module Aws::Macie
|
|
108
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
123
|
# the background every 60 secs (default). Defaults to `false`.
|
110
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
111
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
133
|
# this client.
|
@@ -132,6 +152,10 @@ module Aws::Macie
|
|
132
152
|
# When `true`, an attempt is made to coerce request parameters into
|
133
153
|
# the required types.
|
134
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
135
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
160
|
# Set to true to disable SDK automatically adding host prefix
|
137
161
|
# to default service endpoint when available.
|
@@ -139,7 +163,7 @@ module Aws::Macie
|
|
139
163
|
# @option options [String] :endpoint
|
140
164
|
# The client endpoint is normally constructed from the `:region`
|
141
165
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
167
|
#
|
144
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +178,7 @@ module Aws::Macie
|
|
154
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
179
|
#
|
156
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
182
|
#
|
159
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
184
|
# The log formatter.
|
@@ -166,15 +190,29 @@ module Aws::Macie
|
|
166
190
|
# The Logger instance to send log messages to. If this option
|
167
191
|
# is not set, logging will be disabled.
|
168
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
169
199
|
# @option options [String] :profile ("default")
|
170
200
|
# Used when loading credentials from the shared credentials file
|
171
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
173
207
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
175
210
|
#
|
176
211
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
178
216
|
#
|
179
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
218
|
#
|
@@ -182,11 +220,30 @@ module Aws::Macie
|
|
182
220
|
# The maximum number of times to retry failed requests. Only
|
183
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
222
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
187
226
|
#
|
188
227
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
190
247
|
#
|
191
248
|
# @option options [String] :secret_access_key
|
192
249
|
#
|
@@ -219,16 +276,15 @@ module Aws::Macie
|
|
219
276
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
277
|
#
|
221
278
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
279
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
280
|
# `Timeout::Error`.
|
224
281
|
#
|
225
282
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
283
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
284
|
+
# safely be set per-request on the session.
|
229
285
|
#
|
230
286
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
287
|
+
# seconds a connection is allowed to sit idle before it is
|
232
288
|
# considered stale. Stale connections are closed and removed
|
233
289
|
# from the pool before making a request.
|
234
290
|
#
|
@@ -237,7 +293,7 @@ module Aws::Macie
|
|
237
293
|
# request body. This option has no effect unless the request has
|
238
294
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
295
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
296
|
+
# request on the session.
|
241
297
|
#
|
242
298
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
299
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -264,12 +320,12 @@ module Aws::Macie
|
|
264
320
|
|
265
321
|
# @!group API Operations
|
266
322
|
|
267
|
-
# Associates a specified AWS account with Amazon Macie as a
|
268
|
-
# account.
|
323
|
+
# Associates a specified AWS account with Amazon Macie Classic as a
|
324
|
+
# member account.
|
269
325
|
#
|
270
326
|
# @option params [required, String] :member_account_id
|
271
327
|
# The ID of the AWS account that you want to associate with Amazon Macie
|
272
|
-
# as a member account.
|
328
|
+
# Classic as a member account.
|
273
329
|
#
|
274
330
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
275
331
|
#
|
@@ -288,19 +344,20 @@ module Aws::Macie
|
|
288
344
|
req.send_request(options)
|
289
345
|
end
|
290
346
|
|
291
|
-
# Associates specified S3 resources with Amazon Macie for
|
292
|
-
# data classification. If memberAccountId isn't
|
293
|
-
# associates specified S3 resources with Macie
|
294
|
-
# account. If memberAccountId is
|
295
|
-
# specified S3 resources with Macie
|
347
|
+
# Associates specified S3 resources with Amazon Macie Classic for
|
348
|
+
# monitoring and data classification. If memberAccountId isn't
|
349
|
+
# specified, the action associates specified S3 resources with Macie
|
350
|
+
# Classic for the current master account. If memberAccountId is
|
351
|
+
# specified, the action associates specified S3 resources with Macie
|
352
|
+
# Classic for the specified member account.
|
296
353
|
#
|
297
354
|
# @option params [String] :member_account_id
|
298
|
-
# The ID of the Amazon Macie member account whose resources you
|
299
|
-
# associate with Macie.
|
355
|
+
# The ID of the Amazon Macie Classic member account whose resources you
|
356
|
+
# want to associate with Macie Classic.
|
300
357
|
#
|
301
358
|
# @option params [required, Array<Types::S3ResourceClassification>] :s3_resources
|
302
|
-
# The S3 resources that you want to associate with Amazon Macie
|
303
|
-
# monitoring and data classification.
|
359
|
+
# The S3 resources that you want to associate with Amazon Macie Classic
|
360
|
+
# for monitoring and data classification.
|
304
361
|
#
|
305
362
|
# @return [Types::AssociateS3ResourcesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
306
363
|
#
|
@@ -339,11 +396,11 @@ module Aws::Macie
|
|
339
396
|
req.send_request(options)
|
340
397
|
end
|
341
398
|
|
342
|
-
# Removes the specified member account from Amazon Macie.
|
399
|
+
# Removes the specified member account from Amazon Macie Classic.
|
343
400
|
#
|
344
401
|
# @option params [required, String] :member_account_id
|
345
|
-
# The ID of the member account that you want to remove from Amazon
|
346
|
-
#
|
402
|
+
# The ID of the member account that you want to remove from Amazon Macie
|
403
|
+
# Classic.
|
347
404
|
#
|
348
405
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
349
406
|
#
|
@@ -362,19 +419,19 @@ module Aws::Macie
|
|
362
419
|
req.send_request(options)
|
363
420
|
end
|
364
421
|
|
365
|
-
# Removes specified S3 resources from being monitored by Amazon Macie
|
366
|
-
# If memberAccountId isn't specified, the action removes
|
367
|
-
# resources from Macie for the current master
|
368
|
-
# memberAccountId is specified, the action removes specified
|
369
|
-
# resources from Macie for the specified member account.
|
422
|
+
# Removes specified S3 resources from being monitored by Amazon Macie
|
423
|
+
# Classic. If memberAccountId isn't specified, the action removes
|
424
|
+
# specified S3 resources from Macie Classic for the current master
|
425
|
+
# account. If memberAccountId is specified, the action removes specified
|
426
|
+
# S3 resources from Macie Classic for the specified member account.
|
370
427
|
#
|
371
428
|
# @option params [String] :member_account_id
|
372
|
-
# The ID of the Amazon Macie member account whose resources you
|
373
|
-
# remove from being monitored by Amazon Macie.
|
429
|
+
# The ID of the Amazon Macie Classic member account whose resources you
|
430
|
+
# want to remove from being monitored by Amazon Macie Classic.
|
374
431
|
#
|
375
432
|
# @option params [required, Array<Types::S3Resource>] :associated_s3_resources
|
376
433
|
# The S3 resources (buckets or prefixes) that you want to remove from
|
377
|
-
# being monitored and classified by Amazon Macie.
|
434
|
+
# being monitored and classified by Amazon Macie Classic.
|
378
435
|
#
|
379
436
|
# @return [Types::DisassociateS3ResourcesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
380
437
|
#
|
@@ -409,8 +466,8 @@ module Aws::Macie
|
|
409
466
|
req.send_request(options)
|
410
467
|
end
|
411
468
|
|
412
|
-
# Lists all Amazon Macie member accounts for the current Amazon
|
413
|
-
# master account.
|
469
|
+
# Lists all Amazon Macie Classic member accounts for the current Amazon
|
470
|
+
# Macie Classic master account.
|
414
471
|
#
|
415
472
|
# @option params [String] :next_token
|
416
473
|
# Use this parameter when paginating results. Set the value of this
|
@@ -428,6 +485,8 @@ module Aws::Macie
|
|
428
485
|
# * {Types::ListMemberAccountsResult#member_accounts #member_accounts} => Array<Types::MemberAccount>
|
429
486
|
# * {Types::ListMemberAccountsResult#next_token #next_token} => String
|
430
487
|
#
|
488
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
489
|
+
#
|
431
490
|
# @example Request syntax with placeholder values
|
432
491
|
#
|
433
492
|
# resp = client.list_member_accounts({
|
@@ -450,15 +509,15 @@ module Aws::Macie
|
|
450
509
|
req.send_request(options)
|
451
510
|
end
|
452
511
|
|
453
|
-
# Lists all the S3 resources associated with Amazon Macie. If
|
512
|
+
# Lists all the S3 resources associated with Amazon Macie Classic. If
|
454
513
|
# memberAccountId isn't specified, the action lists the S3 resources
|
455
|
-
# associated with Amazon Macie for the current master account.
|
456
|
-
# memberAccountId is specified, the action lists the S3 resources
|
457
|
-
# associated with Amazon Macie for the specified member account.
|
514
|
+
# associated with Amazon Macie Classic for the current master account.
|
515
|
+
# If memberAccountId is specified, the action lists the S3 resources
|
516
|
+
# associated with Amazon Macie Classic for the specified member account.
|
458
517
|
#
|
459
518
|
# @option params [String] :member_account_id
|
460
|
-
# The Amazon Macie member account ID whose associated S3
|
461
|
-
# want to list.
|
519
|
+
# The Amazon Macie Classic member account ID whose associated S3
|
520
|
+
# resources you want to list.
|
462
521
|
#
|
463
522
|
# @option params [String] :next_token
|
464
523
|
# Use this parameter when paginating results. Set its value to null on
|
@@ -475,6 +534,8 @@ module Aws::Macie
|
|
475
534
|
# * {Types::ListS3ResourcesResult#s3_resources #s3_resources} => Array<Types::S3ResourceClassification>
|
476
535
|
# * {Types::ListS3ResourcesResult#next_token #next_token} => String
|
477
536
|
#
|
537
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
538
|
+
#
|
478
539
|
# @example Request syntax with placeholder values
|
479
540
|
#
|
480
541
|
# resp = client.list_s3_resources({
|
@@ -504,13 +565,14 @@ module Aws::Macie
|
|
504
565
|
# Updates the classification types for the specified S3 resources. If
|
505
566
|
# memberAccountId isn't specified, the action updates the
|
506
567
|
# classification types of the S3 resources associated with Amazon Macie
|
507
|
-
# for the current master account. If memberAccountId is
|
508
|
-
# action updates the classification types of the S3
|
509
|
-
# with Amazon Macie for the specified
|
568
|
+
# Classic for the current master account. If memberAccountId is
|
569
|
+
# specified, the action updates the classification types of the S3
|
570
|
+
# resources associated with Amazon Macie Classic for the specified
|
571
|
+
# member account.
|
510
572
|
#
|
511
573
|
# @option params [String] :member_account_id
|
512
|
-
# The AWS ID of the Amazon Macie member account whose S3
|
513
|
-
# classification types you want to update.
|
574
|
+
# The AWS ID of the Amazon Macie Classic member account whose S3
|
575
|
+
# resources' classification types you want to update.
|
514
576
|
#
|
515
577
|
# @option params [required, Array<Types::S3ResourceClassificationUpdate>] :s3_resources_update
|
516
578
|
# The S3 resources whose classification types you want to update.
|
@@ -565,7 +627,7 @@ module Aws::Macie
|
|
565
627
|
params: params,
|
566
628
|
config: config)
|
567
629
|
context[:gem_name] = 'aws-sdk-macie'
|
568
|
-
context[:gem_version] = '1.
|
630
|
+
context[:gem_version] = '1.21.1'
|
569
631
|
Seahorse::Client::Request.new(handlers, context)
|
570
632
|
end
|
571
633
|
|
data/lib/aws-sdk-macie/errors.rb
CHANGED
@@ -6,6 +6,32 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::Macie
|
9
|
+
|
10
|
+
# When Macie returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::Macie::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all Macie errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::Macie::Errors::ServiceError
|
18
|
+
# # rescues all Macie API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {AccessDeniedException}
|
29
|
+
# * {InternalException}
|
30
|
+
# * {InvalidInputException}
|
31
|
+
# * {LimitExceededException}
|
32
|
+
#
|
33
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
34
|
+
# if they are not defined above.
|
9
35
|
module Errors
|
10
36
|
|
11
37
|
extend Aws::Errors::DynamicErrors
|
@@ -28,7 +54,6 @@ module Aws::Macie
|
|
28
54
|
def resource_type
|
29
55
|
@data[:resource_type]
|
30
56
|
end
|
31
|
-
|
32
57
|
end
|
33
58
|
|
34
59
|
class InternalException < ServiceError
|
@@ -49,7 +74,6 @@ module Aws::Macie
|
|
49
74
|
def message
|
50
75
|
@message || @data[:message]
|
51
76
|
end
|
52
|
-
|
53
77
|
end
|
54
78
|
|
55
79
|
class InvalidInputException < ServiceError
|
@@ -75,7 +99,6 @@ module Aws::Macie
|
|
75
99
|
def field_name
|
76
100
|
@data[:field_name]
|
77
101
|
end
|
78
|
-
|
79
102
|
end
|
80
103
|
|
81
104
|
class LimitExceededException < ServiceError
|
@@ -101,7 +124,6 @@ module Aws::Macie
|
|
101
124
|
def resource_type
|
102
125
|
@data[:resource_type]
|
103
126
|
end
|
104
|
-
|
105
127
|
end
|
106
128
|
|
107
129
|
end
|
data/lib/aws-sdk-macie/types.rb
CHANGED
@@ -34,7 +34,7 @@ module Aws::Macie
|
|
34
34
|
#
|
35
35
|
# @!attribute [rw] member_account_id
|
36
36
|
# The ID of the AWS account that you want to associate with Amazon
|
37
|
-
# Macie as a member account.
|
37
|
+
# Macie Classic as a member account.
|
38
38
|
# @return [String]
|
39
39
|
#
|
40
40
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/AssociateMemberAccountRequest AWS API Documentation
|
@@ -62,13 +62,13 @@ module Aws::Macie
|
|
62
62
|
# }
|
63
63
|
#
|
64
64
|
# @!attribute [rw] member_account_id
|
65
|
-
# The ID of the Amazon Macie member account whose resources
|
66
|
-
# to associate with Macie.
|
65
|
+
# The ID of the Amazon Macie Classic member account whose resources
|
66
|
+
# you want to associate with Macie Classic.
|
67
67
|
# @return [String]
|
68
68
|
#
|
69
69
|
# @!attribute [rw] s3_resources
|
70
|
-
# The S3 resources that you want to associate with Amazon Macie
|
71
|
-
# monitoring and data classification.
|
70
|
+
# The S3 resources that you want to associate with Amazon Macie
|
71
|
+
# Classic for monitoring and data classification.
|
72
72
|
# @return [Array<Types::S3ResourceClassification>]
|
73
73
|
#
|
74
74
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/AssociateS3ResourcesRequest AWS API Documentation
|
@@ -80,8 +80,9 @@ module Aws::Macie
|
|
80
80
|
end
|
81
81
|
|
82
82
|
# @!attribute [rw] failed_s3_resources
|
83
|
-
# S3 resources that couldn't be associated with Amazon Macie.
|
84
|
-
# error code and an error message are provided for each failed
|
83
|
+
# S3 resources that couldn't be associated with Amazon Macie Classic.
|
84
|
+
# An error code and an error message are provided for each failed
|
85
|
+
# item.
|
85
86
|
# @return [Array<Types::FailedS3Resource>]
|
86
87
|
#
|
87
88
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/AssociateS3ResourcesResult AWS API Documentation
|
@@ -91,8 +92,8 @@ module Aws::Macie
|
|
91
92
|
include Aws::Structure
|
92
93
|
end
|
93
94
|
|
94
|
-
# The classification type that Amazon Macie applies to the
|
95
|
-
# resources.
|
95
|
+
# The classification type that Amazon Macie Classic applies to the
|
96
|
+
# associated S3 resources.
|
96
97
|
#
|
97
98
|
# @note When making an API call, you may pass ClassificationType
|
98
99
|
# data as a hash:
|
@@ -109,9 +110,9 @@ module Aws::Macie
|
|
109
110
|
#
|
110
111
|
# @!attribute [rw] continuous
|
111
112
|
# A continuous classification of the objects that are added to a
|
112
|
-
# specified S3 bucket. Amazon Macie begins performing
|
113
|
-
# classification after a bucket is successfully associated
|
114
|
-
# Macie.
|
113
|
+
# specified S3 bucket. Amazon Macie Classic begins performing
|
114
|
+
# continuous classification after a bucket is successfully associated
|
115
|
+
# with Amazon Macie Classic.
|
115
116
|
# @return [String]
|
116
117
|
#
|
117
118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/ClassificationType AWS API Documentation
|
@@ -122,9 +123,9 @@ module Aws::Macie
|
|
122
123
|
include Aws::Structure
|
123
124
|
end
|
124
125
|
|
125
|
-
# The classification type that Amazon Macie applies to the
|
126
|
-
# resources. At least one of the classification types
|
127
|
-
# continuous) must be specified.
|
126
|
+
# The classification type that Amazon Macie Classic applies to the
|
127
|
+
# associated S3 resources. At least one of the classification types
|
128
|
+
# (oneTime or continuous) must be specified.
|
128
129
|
#
|
129
130
|
# @note When making an API call, you may pass ClassificationTypeUpdate
|
130
131
|
# data as a hash:
|
@@ -141,9 +142,9 @@ module Aws::Macie
|
|
141
142
|
#
|
142
143
|
# @!attribute [rw] continuous
|
143
144
|
# A continuous classification of the objects that are added to a
|
144
|
-
# specified S3 bucket. Amazon Macie begins performing
|
145
|
-
# classification after a bucket is successfully associated
|
146
|
-
# Macie.
|
145
|
+
# specified S3 bucket. Amazon Macie Classic begins performing
|
146
|
+
# continuous classification after a bucket is successfully associated
|
147
|
+
# with Amazon Macie Classic.
|
147
148
|
# @return [String]
|
148
149
|
#
|
149
150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/ClassificationTypeUpdate AWS API Documentation
|
@@ -163,7 +164,7 @@ module Aws::Macie
|
|
163
164
|
#
|
164
165
|
# @!attribute [rw] member_account_id
|
165
166
|
# The ID of the member account that you want to remove from Amazon
|
166
|
-
# Macie.
|
167
|
+
# Macie Classic.
|
167
168
|
# @return [String]
|
168
169
|
#
|
169
170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/DisassociateMemberAccountRequest AWS API Documentation
|
@@ -187,13 +188,13 @@ module Aws::Macie
|
|
187
188
|
# }
|
188
189
|
#
|
189
190
|
# @!attribute [rw] member_account_id
|
190
|
-
# The ID of the Amazon Macie member account whose resources
|
191
|
-
# to remove from being monitored by Amazon Macie.
|
191
|
+
# The ID of the Amazon Macie Classic member account whose resources
|
192
|
+
# you want to remove from being monitored by Amazon Macie Classic.
|
192
193
|
# @return [String]
|
193
194
|
#
|
194
195
|
# @!attribute [rw] associated_s3_resources
|
195
196
|
# The S3 resources (buckets or prefixes) that you want to remove from
|
196
|
-
# being monitored and classified by Amazon Macie.
|
197
|
+
# being monitored and classified by Amazon Macie Classic.
|
197
198
|
# @return [Array<Types::S3Resource>]
|
198
199
|
#
|
199
200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/DisassociateS3ResourcesRequest AWS API Documentation
|
@@ -206,8 +207,8 @@ module Aws::Macie
|
|
206
207
|
|
207
208
|
# @!attribute [rw] failed_s3_resources
|
208
209
|
# S3 resources that couldn't be removed from being monitored and
|
209
|
-
# classified by Amazon Macie. An error code and an error
|
210
|
-
# provided for each failed item.
|
210
|
+
# classified by Amazon Macie Classic. An error code and an error
|
211
|
+
# message are provided for each failed item.
|
211
212
|
# @return [Array<Types::FailedS3Resource>]
|
212
213
|
#
|
213
214
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/DisassociateS3ResourcesResult AWS API Documentation
|
@@ -334,8 +335,8 @@ module Aws::Macie
|
|
334
335
|
end
|
335
336
|
|
336
337
|
# @!attribute [rw] member_accounts
|
337
|
-
# A list of the Amazon Macie member accounts returned by the
|
338
|
-
# The current master account is also included in this list.
|
338
|
+
# A list of the Amazon Macie Classic member accounts returned by the
|
339
|
+
# action. The current master account is also included in this list.
|
339
340
|
# @return [Array<Types::MemberAccount>]
|
340
341
|
#
|
341
342
|
# @!attribute [rw] next_token
|
@@ -364,8 +365,8 @@ module Aws::Macie
|
|
364
365
|
# }
|
365
366
|
#
|
366
367
|
# @!attribute [rw] member_account_id
|
367
|
-
# The Amazon Macie member account ID whose associated S3
|
368
|
-
# want to list.
|
368
|
+
# The Amazon Macie Classic member account ID whose associated S3
|
369
|
+
# resources you want to list.
|
369
370
|
# @return [String]
|
370
371
|
#
|
371
372
|
# @!attribute [rw] next_token
|
@@ -409,10 +410,10 @@ module Aws::Macie
|
|
409
410
|
include Aws::Structure
|
410
411
|
end
|
411
412
|
|
412
|
-
# Contains information about the Amazon Macie member account.
|
413
|
+
# Contains information about the Amazon Macie Classic member account.
|
413
414
|
#
|
414
415
|
# @!attribute [rw] account_id
|
415
|
-
# The AWS account ID of the Amazon Macie member account.
|
416
|
+
# The AWS account ID of the Amazon Macie Classic member account.
|
416
417
|
# @return [String]
|
417
418
|
#
|
418
419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/MemberAccount AWS API Documentation
|
@@ -451,8 +452,8 @@ module Aws::Macie
|
|
451
452
|
include Aws::Structure
|
452
453
|
end
|
453
454
|
|
454
|
-
# The S3 resources that you want to associate with Amazon Macie
|
455
|
-
# monitoring and data classification. This data type is used as a
|
455
|
+
# The S3 resources that you want to associate with Amazon Macie Classic
|
456
|
+
# for monitoring and data classification. This data type is used as a
|
456
457
|
# request parameter in the AssociateS3Resources action and a response
|
457
458
|
# parameter in the ListS3Resources action.
|
458
459
|
#
|
@@ -470,17 +471,17 @@ module Aws::Macie
|
|
470
471
|
#
|
471
472
|
# @!attribute [rw] bucket_name
|
472
473
|
# The name of the S3 bucket that you want to associate with Amazon
|
473
|
-
# Macie.
|
474
|
+
# Macie Classic.
|
474
475
|
# @return [String]
|
475
476
|
#
|
476
477
|
# @!attribute [rw] prefix
|
477
478
|
# The prefix of the S3 bucket that you want to associate with Amazon
|
478
|
-
# Macie.
|
479
|
+
# Macie Classic.
|
479
480
|
# @return [String]
|
480
481
|
#
|
481
482
|
# @!attribute [rw] classification_type
|
482
483
|
# The classification type that you want to specify for the resource
|
483
|
-
# associated with Amazon Macie.
|
484
|
+
# associated with Amazon Macie Classic.
|
484
485
|
# @return [Types::ClassificationType]
|
485
486
|
#
|
486
487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/S3ResourceClassification AWS API Documentation
|
@@ -520,7 +521,7 @@ module Aws::Macie
|
|
520
521
|
#
|
521
522
|
# @!attribute [rw] classification_type_update
|
522
523
|
# The classification type that you want to update for the resource
|
523
|
-
# associated with Amazon Macie.
|
524
|
+
# associated with Amazon Macie Classic.
|
524
525
|
# @return [Types::ClassificationTypeUpdate]
|
525
526
|
#
|
526
527
|
# @see http://docs.aws.amazon.com/goto/WebAPI/macie-2017-12-19/S3ResourceClassificationUpdate AWS API Documentation
|
@@ -550,8 +551,8 @@ module Aws::Macie
|
|
550
551
|
# }
|
551
552
|
#
|
552
553
|
# @!attribute [rw] member_account_id
|
553
|
-
# The AWS ID of the Amazon Macie member account whose S3
|
554
|
-
# classification types you want to update.
|
554
|
+
# The AWS ID of the Amazon Macie Classic member account whose S3
|
555
|
+
# resources' classification types you want to update.
|
555
556
|
# @return [String]
|
556
557
|
#
|
557
558
|
# @!attribute [rw] s3_resources_update
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-macie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.1
|
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:
|
11
|
+
date: 2020-06-11 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon Macie
|