aws-sdk-macie 1.39.0 → 1.40.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-macie/client.rb +1 -1
- data/lib/aws-sdk-macie/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-macie/types.rb +0 -126
- data/lib/aws-sdk-macie.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: 06efe57223f15f18632670304f25139926621fd11cb9d0bf5aa7830045774e91
|
4
|
+
data.tar.gz: 3103b062d1ea3fd326dc51964e6f92f887e9b1e8bb64799f386964fb0108a614
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5207be4f143a497a17db25508daad794f30ac09666217a573053b2b8ab3a088b8a8ebc71969845695a9f4d1281179c66237bc4be487a3577bea7630685e797f0
|
7
|
+
data.tar.gz: 0df7247acce87c3fc24a03d4b9ca88b5005335987386405b292881370fabf2b2b304389a583fdb603d0eebfcc2097974d61854de7c715308e048b5bde4868a04
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.40.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.39.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -205,4 +212,4 @@ Unreleased Changes
|
|
205
212
|
1.0.0 (2018-06-21)
|
206
213
|
------------------
|
207
214
|
|
208
|
-
* Feature - Initial release of `aws-sdk-macie`.
|
215
|
+
* Feature - Initial release of `aws-sdk-macie`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.40.0
|
data/lib/aws-sdk-macie/client.rb
CHANGED
@@ -9,103 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::Macie
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://macie-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://macie-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://macie.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://macie.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL21hY2llLWZpcHMue1JlZ2lvbn0ue1BhcnRp
|
77
|
-
dGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
78
|
-
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRp
|
79
|
-
dGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5h
|
80
|
-
YmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25l
|
81
|
-
IG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3si
|
82
|
-
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9
|
83
|
-
LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
84
|
-
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJn
|
85
|
-
ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1
|
86
|
-
cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
87
|
-
ZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
88
|
-
bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21hY2llLWZpcHMu
|
89
|
-
e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
|
90
|
-
dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
91
|
-
LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1
|
92
|
-
dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBl
|
93
|
-
IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
|
94
|
-
YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwi
|
95
|
-
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
|
96
|
-
b29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJh
|
97
|
-
cmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFs
|
98
|
-
U3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
99
|
-
bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21hY2llLntSZWdp
|
100
|
-
b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
|
101
|
-
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
102
|
-
XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5h
|
103
|
-
YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFs
|
104
|
-
U3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
|
105
|
-
ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbWFjaWUue1JlZ2lvbn0ue1BhcnRp
|
106
|
-
dGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
|
107
|
-
cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
108
|
-
|
109
|
-
JSON
|
110
50
|
end
|
111
51
|
end
|
data/lib/aws-sdk-macie/types.rb
CHANGED
@@ -29,13 +29,6 @@ module Aws::Macie
|
|
29
29
|
include Aws::Structure
|
30
30
|
end
|
31
31
|
|
32
|
-
# @note When making an API call, you may pass AssociateMemberAccountRequest
|
33
|
-
# data as a hash:
|
34
|
-
#
|
35
|
-
# {
|
36
|
-
# member_account_id: "AWSAccountId", # required
|
37
|
-
# }
|
38
|
-
#
|
39
32
|
# @!attribute [rw] member_account_id
|
40
33
|
# (Discontinued) The ID of the Amazon Web Services account that you
|
41
34
|
# want to associate with Amazon Macie Classic as a member account.
|
@@ -49,23 +42,6 @@ module Aws::Macie
|
|
49
42
|
include Aws::Structure
|
50
43
|
end
|
51
44
|
|
52
|
-
# @note When making an API call, you may pass AssociateS3ResourcesRequest
|
53
|
-
# data as a hash:
|
54
|
-
#
|
55
|
-
# {
|
56
|
-
# member_account_id: "AWSAccountId",
|
57
|
-
# s3_resources: [ # required
|
58
|
-
# {
|
59
|
-
# bucket_name: "BucketName", # required
|
60
|
-
# prefix: "Prefix",
|
61
|
-
# classification_type: { # required
|
62
|
-
# one_time: "FULL", # required, accepts FULL, NONE
|
63
|
-
# continuous: "FULL", # required, accepts FULL
|
64
|
-
# },
|
65
|
-
# },
|
66
|
-
# ],
|
67
|
-
# }
|
68
|
-
#
|
69
45
|
# @!attribute [rw] member_account_id
|
70
46
|
# (Discontinued) The ID of the Amazon Macie Classic member account
|
71
47
|
# whose resources you want to associate with Macie Classic.
|
@@ -102,14 +78,6 @@ module Aws::Macie
|
|
102
78
|
# (Discontinued) The classification type that Amazon Macie Classic
|
103
79
|
# applies to the associated S3 resources.
|
104
80
|
#
|
105
|
-
# @note When making an API call, you may pass ClassificationType
|
106
|
-
# data as a hash:
|
107
|
-
#
|
108
|
-
# {
|
109
|
-
# one_time: "FULL", # required, accepts FULL, NONE
|
110
|
-
# continuous: "FULL", # required, accepts FULL
|
111
|
-
# }
|
112
|
-
#
|
113
81
|
# @!attribute [rw] one_time
|
114
82
|
# (Discontinued) A one-time classification of all of the existing
|
115
83
|
# objects in a specified S3 bucket.
|
@@ -135,14 +103,6 @@ module Aws::Macie
|
|
135
103
|
# applies to the associated S3 resources. At least one of the
|
136
104
|
# classification types (`oneTime` or `continuous`) must be specified.
|
137
105
|
#
|
138
|
-
# @note When making an API call, you may pass ClassificationTypeUpdate
|
139
|
-
# data as a hash:
|
140
|
-
#
|
141
|
-
# {
|
142
|
-
# one_time: "FULL", # accepts FULL, NONE
|
143
|
-
# continuous: "FULL", # accepts FULL
|
144
|
-
# }
|
145
|
-
#
|
146
106
|
# @!attribute [rw] one_time
|
147
107
|
# (Discontinued) A one-time classification of all of the existing
|
148
108
|
# objects in a specified S3 bucket.
|
@@ -164,13 +124,6 @@ module Aws::Macie
|
|
164
124
|
include Aws::Structure
|
165
125
|
end
|
166
126
|
|
167
|
-
# @note When making an API call, you may pass DisassociateMemberAccountRequest
|
168
|
-
# data as a hash:
|
169
|
-
#
|
170
|
-
# {
|
171
|
-
# member_account_id: "AWSAccountId", # required
|
172
|
-
# }
|
173
|
-
#
|
174
127
|
# @!attribute [rw] member_account_id
|
175
128
|
# (Discontinued) The ID of the member account that you want to remove
|
176
129
|
# from Amazon Macie Classic.
|
@@ -184,19 +137,6 @@ module Aws::Macie
|
|
184
137
|
include Aws::Structure
|
185
138
|
end
|
186
139
|
|
187
|
-
# @note When making an API call, you may pass DisassociateS3ResourcesRequest
|
188
|
-
# data as a hash:
|
189
|
-
#
|
190
|
-
# {
|
191
|
-
# member_account_id: "AWSAccountId",
|
192
|
-
# associated_s3_resources: [ # required
|
193
|
-
# {
|
194
|
-
# bucket_name: "BucketName", # required
|
195
|
-
# prefix: "Prefix",
|
196
|
-
# },
|
197
|
-
# ],
|
198
|
-
# }
|
199
|
-
#
|
200
140
|
# @!attribute [rw] member_account_id
|
201
141
|
# (Discontinued) The ID of the Amazon Macie Classic member account
|
202
142
|
# whose resources you want to remove from being monitored by Macie
|
@@ -323,14 +263,6 @@ module Aws::Macie
|
|
323
263
|
include Aws::Structure
|
324
264
|
end
|
325
265
|
|
326
|
-
# @note When making an API call, you may pass ListMemberAccountsRequest
|
327
|
-
# data as a hash:
|
328
|
-
#
|
329
|
-
# {
|
330
|
-
# next_token: "NextToken",
|
331
|
-
# max_results: 1,
|
332
|
-
# }
|
333
|
-
#
|
334
266
|
# @!attribute [rw] next_token
|
335
267
|
# (Discontinued) Use this parameter when paginating results. Set the
|
336
268
|
# value of this parameter to null on your first call to the
|
@@ -376,15 +308,6 @@ module Aws::Macie
|
|
376
308
|
include Aws::Structure
|
377
309
|
end
|
378
310
|
|
379
|
-
# @note When making an API call, you may pass ListS3ResourcesRequest
|
380
|
-
# data as a hash:
|
381
|
-
#
|
382
|
-
# {
|
383
|
-
# member_account_id: "AWSAccountId",
|
384
|
-
# next_token: "NextToken",
|
385
|
-
# max_results: 1,
|
386
|
-
# }
|
387
|
-
#
|
388
311
|
# @!attribute [rw] member_account_id
|
389
312
|
# (Discontinued) The Amazon Macie Classic member account ID whose
|
390
313
|
# associated S3 resources you want to list.
|
@@ -456,14 +379,6 @@ module Aws::Macie
|
|
456
379
|
# action and can be used as a response parameter in the
|
457
380
|
# `AssociateS3Resources` and `UpdateS3Resources` actions.
|
458
381
|
#
|
459
|
-
# @note When making an API call, you may pass S3Resource
|
460
|
-
# data as a hash:
|
461
|
-
#
|
462
|
-
# {
|
463
|
-
# bucket_name: "BucketName", # required
|
464
|
-
# prefix: "Prefix",
|
465
|
-
# }
|
466
|
-
#
|
467
382
|
# @!attribute [rw] bucket_name
|
468
383
|
# (Discontinued) The name of the S3 bucket.
|
469
384
|
# @return [String]
|
@@ -486,18 +401,6 @@ module Aws::Macie
|
|
486
401
|
# is used as a request parameter in the `AssociateS3Resources` action
|
487
402
|
# and a response parameter in the `ListS3Resources` action.
|
488
403
|
#
|
489
|
-
# @note When making an API call, you may pass S3ResourceClassification
|
490
|
-
# data as a hash:
|
491
|
-
#
|
492
|
-
# {
|
493
|
-
# bucket_name: "BucketName", # required
|
494
|
-
# prefix: "Prefix",
|
495
|
-
# classification_type: { # required
|
496
|
-
# one_time: "FULL", # required, accepts FULL, NONE
|
497
|
-
# continuous: "FULL", # required, accepts FULL
|
498
|
-
# },
|
499
|
-
# }
|
500
|
-
#
|
501
404
|
# @!attribute [rw] bucket_name
|
502
405
|
# (Discontinued) The name of the S3 bucket that you want to associate
|
503
406
|
# with Amazon Macie Classic.
|
@@ -527,18 +430,6 @@ module Aws::Macie
|
|
527
430
|
# update. This data type is used as a request parameter in the
|
528
431
|
# `UpdateS3Resources` action.
|
529
432
|
#
|
530
|
-
# @note When making an API call, you may pass S3ResourceClassificationUpdate
|
531
|
-
# data as a hash:
|
532
|
-
#
|
533
|
-
# {
|
534
|
-
# bucket_name: "BucketName", # required
|
535
|
-
# prefix: "Prefix",
|
536
|
-
# classification_type_update: { # required
|
537
|
-
# one_time: "FULL", # accepts FULL, NONE
|
538
|
-
# continuous: "FULL", # accepts FULL
|
539
|
-
# },
|
540
|
-
# }
|
541
|
-
#
|
542
433
|
# @!attribute [rw] bucket_name
|
543
434
|
# (Discontinued) The name of the S3 bucket whose classification types
|
544
435
|
# you want to update.
|
@@ -564,23 +455,6 @@ module Aws::Macie
|
|
564
455
|
include Aws::Structure
|
565
456
|
end
|
566
457
|
|
567
|
-
# @note When making an API call, you may pass UpdateS3ResourcesRequest
|
568
|
-
# data as a hash:
|
569
|
-
#
|
570
|
-
# {
|
571
|
-
# member_account_id: "AWSAccountId",
|
572
|
-
# s3_resources_update: [ # required
|
573
|
-
# {
|
574
|
-
# bucket_name: "BucketName", # required
|
575
|
-
# prefix: "Prefix",
|
576
|
-
# classification_type_update: { # required
|
577
|
-
# one_time: "FULL", # accepts FULL, NONE
|
578
|
-
# continuous: "FULL", # accepts FULL
|
579
|
-
# },
|
580
|
-
# },
|
581
|
-
# ],
|
582
|
-
# }
|
583
|
-
#
|
584
458
|
# @!attribute [rw] member_account_id
|
585
459
|
# (Discontinued) The Amazon Web Services account ID of the Amazon
|
586
460
|
# Macie Classic member account whose S3 resources' classification
|
data/lib/aws-sdk-macie.rb
CHANGED
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.40.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:
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|