aws-sdk-core 2.11.72 → 2.11.73

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
  SHA1:
3
- metadata.gz: 98ae0ba5401c3bc270da57edaba1375688c89dfc
4
- data.tar.gz: 1c35a7d387cbf99c177601ff9dad7eebc1457612
3
+ metadata.gz: 519bc5f317cc58e7d01943e6301dc77048277292
4
+ data.tar.gz: 24d3c3c427ecb74b9ce4c44a41697445cba38211
5
5
  SHA512:
6
- metadata.gz: e1510fb13adc06bd076462dad0010b4d622a6740645e13ef36d93900bb6ec8bd41f7d506d33e6a17c1e6b8b2eabc8e59e6bdaa1b9ac9f41e4e8ae29145daca43
7
- data.tar.gz: 541201b9c77de10350177fb768861d2808b74707b8939fe14a66b14338174525213733098924ba238cd5f730706083da60187b5e9d2c6ed81c0186db5f33747b
6
+ metadata.gz: 59edd6180af04a0f22af00b2f3bb5ca5779f9fec0e11f476570abd3edc1bdcb447065efb74b95bd1d56b2f0064122b16618a59334a56f7a765f350b300e86cd5
7
+ data.tar.gz: ce33e7f0fc6c3b0de3f47ee067095b11c754ec5880fc306cee1a55168e9178585de68e220e769baaa74dc57c91b870f0853bb324342beb8210377e4339db0bab
@@ -0,0 +1,365 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2017-12-19",
5
+ "endpointPrefix":"macie",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceFullName":"Amazon Macie",
9
+ "serviceId":"Macie",
10
+ "signatureVersion":"v4",
11
+ "targetPrefix":"MacieService",
12
+ "uid":"macie-2017-12-19"
13
+ },
14
+ "operations":{
15
+ "AssociateMemberAccount":{
16
+ "name":"AssociateMemberAccount",
17
+ "http":{
18
+ "method":"POST",
19
+ "requestUri":"/"
20
+ },
21
+ "input":{"shape":"AssociateMemberAccountRequest"},
22
+ "errors":[
23
+ {"shape":"InvalidInputException"},
24
+ {"shape":"LimitExceededException"},
25
+ {"shape":"InternalException"}
26
+ ]
27
+ },
28
+ "AssociateS3Resources":{
29
+ "name":"AssociateS3Resources",
30
+ "http":{
31
+ "method":"POST",
32
+ "requestUri":"/"
33
+ },
34
+ "input":{"shape":"AssociateS3ResourcesRequest"},
35
+ "output":{"shape":"AssociateS3ResourcesResult"},
36
+ "errors":[
37
+ {"shape":"InvalidInputException"},
38
+ {"shape":"AccessDeniedException"},
39
+ {"shape":"LimitExceededException"},
40
+ {"shape":"InternalException"}
41
+ ]
42
+ },
43
+ "DisassociateMemberAccount":{
44
+ "name":"DisassociateMemberAccount",
45
+ "http":{
46
+ "method":"POST",
47
+ "requestUri":"/"
48
+ },
49
+ "input":{"shape":"DisassociateMemberAccountRequest"},
50
+ "errors":[
51
+ {"shape":"InvalidInputException"},
52
+ {"shape":"InternalException"}
53
+ ]
54
+ },
55
+ "DisassociateS3Resources":{
56
+ "name":"DisassociateS3Resources",
57
+ "http":{
58
+ "method":"POST",
59
+ "requestUri":"/"
60
+ },
61
+ "input":{"shape":"DisassociateS3ResourcesRequest"},
62
+ "output":{"shape":"DisassociateS3ResourcesResult"},
63
+ "errors":[
64
+ {"shape":"InvalidInputException"},
65
+ {"shape":"AccessDeniedException"},
66
+ {"shape":"InternalException"}
67
+ ]
68
+ },
69
+ "ListMemberAccounts":{
70
+ "name":"ListMemberAccounts",
71
+ "http":{
72
+ "method":"POST",
73
+ "requestUri":"/"
74
+ },
75
+ "input":{"shape":"ListMemberAccountsRequest"},
76
+ "output":{"shape":"ListMemberAccountsResult"},
77
+ "errors":[
78
+ {"shape":"InternalException"},
79
+ {"shape":"InvalidInputException"}
80
+ ]
81
+ },
82
+ "ListS3Resources":{
83
+ "name":"ListS3Resources",
84
+ "http":{
85
+ "method":"POST",
86
+ "requestUri":"/"
87
+ },
88
+ "input":{"shape":"ListS3ResourcesRequest"},
89
+ "output":{"shape":"ListS3ResourcesResult"},
90
+ "errors":[
91
+ {"shape":"InvalidInputException"},
92
+ {"shape":"AccessDeniedException"},
93
+ {"shape":"InternalException"}
94
+ ]
95
+ },
96
+ "UpdateS3Resources":{
97
+ "name":"UpdateS3Resources",
98
+ "http":{
99
+ "method":"POST",
100
+ "requestUri":"/"
101
+ },
102
+ "input":{"shape":"UpdateS3ResourcesRequest"},
103
+ "output":{"shape":"UpdateS3ResourcesResult"},
104
+ "errors":[
105
+ {"shape":"InvalidInputException"},
106
+ {"shape":"AccessDeniedException"},
107
+ {"shape":"InternalException"}
108
+ ]
109
+ }
110
+ },
111
+ "shapes":{
112
+ "AWSAccountId":{
113
+ "type":"string",
114
+ "pattern":"[0-9]{12}"
115
+ },
116
+ "AccessDeniedException":{
117
+ "type":"structure",
118
+ "members":{
119
+ "message":{"shape":"ExceptionMessage"},
120
+ "resourceType":{"shape":"ResourceType"}
121
+ },
122
+ "exception":true
123
+ },
124
+ "AssociateMemberAccountRequest":{
125
+ "type":"structure",
126
+ "required":["memberAccountId"],
127
+ "members":{
128
+ "memberAccountId":{"shape":"AWSAccountId"}
129
+ }
130
+ },
131
+ "AssociateS3ResourcesRequest":{
132
+ "type":"structure",
133
+ "required":["s3Resources"],
134
+ "members":{
135
+ "memberAccountId":{"shape":"AWSAccountId"},
136
+ "s3Resources":{"shape":"S3ResourcesClassification"}
137
+ }
138
+ },
139
+ "AssociateS3ResourcesResult":{
140
+ "type":"structure",
141
+ "members":{
142
+ "failedS3Resources":{"shape":"FailedS3Resources"}
143
+ }
144
+ },
145
+ "BucketName":{
146
+ "type":"string",
147
+ "max":500
148
+ },
149
+ "ClassificationType":{
150
+ "type":"structure",
151
+ "required":[
152
+ "oneTime",
153
+ "continuous"
154
+ ],
155
+ "members":{
156
+ "oneTime":{"shape":"S3OneTimeClassificationType"},
157
+ "continuous":{"shape":"S3ContinuousClassificationType"}
158
+ }
159
+ },
160
+ "ClassificationTypeUpdate":{
161
+ "type":"structure",
162
+ "members":{
163
+ "oneTime":{"shape":"S3OneTimeClassificationType"},
164
+ "continuous":{"shape":"S3ContinuousClassificationType"}
165
+ }
166
+ },
167
+ "DisassociateMemberAccountRequest":{
168
+ "type":"structure",
169
+ "required":["memberAccountId"],
170
+ "members":{
171
+ "memberAccountId":{"shape":"AWSAccountId"}
172
+ }
173
+ },
174
+ "DisassociateS3ResourcesRequest":{
175
+ "type":"structure",
176
+ "required":["associatedS3Resources"],
177
+ "members":{
178
+ "memberAccountId":{"shape":"AWSAccountId"},
179
+ "associatedS3Resources":{"shape":"S3Resources"}
180
+ }
181
+ },
182
+ "DisassociateS3ResourcesResult":{
183
+ "type":"structure",
184
+ "members":{
185
+ "failedS3Resources":{"shape":"FailedS3Resources"}
186
+ }
187
+ },
188
+ "ErrorCode":{
189
+ "type":"string",
190
+ "max":10
191
+ },
192
+ "ExceptionMessage":{
193
+ "type":"string",
194
+ "max":10000
195
+ },
196
+ "FailedS3Resource":{
197
+ "type":"structure",
198
+ "members":{
199
+ "failedItem":{"shape":"S3Resource"},
200
+ "errorCode":{"shape":"ErrorCode"},
201
+ "errorMessage":{"shape":"ExceptionMessage"}
202
+ }
203
+ },
204
+ "FailedS3Resources":{
205
+ "type":"list",
206
+ "member":{"shape":"FailedS3Resource"}
207
+ },
208
+ "FieldName":{
209
+ "type":"string",
210
+ "max":1000
211
+ },
212
+ "InternalException":{
213
+ "type":"structure",
214
+ "members":{
215
+ "errorCode":{"shape":"ErrorCode"},
216
+ "message":{"shape":"ExceptionMessage"}
217
+ },
218
+ "exception":true,
219
+ "fault":true
220
+ },
221
+ "InvalidInputException":{
222
+ "type":"structure",
223
+ "members":{
224
+ "errorCode":{"shape":"ErrorCode"},
225
+ "message":{"shape":"ExceptionMessage"},
226
+ "fieldName":{"shape":"FieldName"}
227
+ },
228
+ "exception":true
229
+ },
230
+ "LimitExceededException":{
231
+ "type":"structure",
232
+ "members":{
233
+ "errorCode":{"shape":"ErrorCode"},
234
+ "message":{"shape":"ExceptionMessage"},
235
+ "resourceType":{"shape":"ResourceType"}
236
+ },
237
+ "exception":true
238
+ },
239
+ "ListMemberAccountsRequest":{
240
+ "type":"structure",
241
+ "members":{
242
+ "nextToken":{"shape":"NextToken"},
243
+ "maxResults":{"shape":"MaxResults"}
244
+ }
245
+ },
246
+ "ListMemberAccountsResult":{
247
+ "type":"structure",
248
+ "members":{
249
+ "memberAccounts":{"shape":"MemberAccounts"},
250
+ "nextToken":{"shape":"NextToken"}
251
+ }
252
+ },
253
+ "ListS3ResourcesRequest":{
254
+ "type":"structure",
255
+ "members":{
256
+ "memberAccountId":{"shape":"AWSAccountId"},
257
+ "nextToken":{"shape":"NextToken"},
258
+ "maxResults":{"shape":"MaxResults"}
259
+ }
260
+ },
261
+ "ListS3ResourcesResult":{
262
+ "type":"structure",
263
+ "members":{
264
+ "s3Resources":{"shape":"S3ResourcesClassification"},
265
+ "nextToken":{"shape":"NextToken"}
266
+ }
267
+ },
268
+ "MaxResults":{
269
+ "type":"integer",
270
+ "box":true,
271
+ "max":250
272
+ },
273
+ "MemberAccount":{
274
+ "type":"structure",
275
+ "members":{
276
+ "accountId":{"shape":"AWSAccountId"}
277
+ }
278
+ },
279
+ "MemberAccounts":{
280
+ "type":"list",
281
+ "member":{"shape":"MemberAccount"}
282
+ },
283
+ "NextToken":{
284
+ "type":"string",
285
+ "max":500
286
+ },
287
+ "Prefix":{
288
+ "type":"string",
289
+ "max":10000
290
+ },
291
+ "ResourceType":{
292
+ "type":"string",
293
+ "max":1000
294
+ },
295
+ "S3ContinuousClassificationType":{
296
+ "type":"string",
297
+ "enum":["FULL"]
298
+ },
299
+ "S3OneTimeClassificationType":{
300
+ "type":"string",
301
+ "enum":[
302
+ "FULL",
303
+ "NONE"
304
+ ]
305
+ },
306
+ "S3Resource":{
307
+ "type":"structure",
308
+ "required":["bucketName"],
309
+ "members":{
310
+ "bucketName":{"shape":"BucketName"},
311
+ "prefix":{"shape":"Prefix"}
312
+ }
313
+ },
314
+ "S3ResourceClassification":{
315
+ "type":"structure",
316
+ "required":[
317
+ "bucketName",
318
+ "classificationType"
319
+ ],
320
+ "members":{
321
+ "bucketName":{"shape":"BucketName"},
322
+ "prefix":{"shape":"Prefix"},
323
+ "classificationType":{"shape":"ClassificationType"}
324
+ }
325
+ },
326
+ "S3ResourceClassificationUpdate":{
327
+ "type":"structure",
328
+ "required":[
329
+ "bucketName",
330
+ "classificationTypeUpdate"
331
+ ],
332
+ "members":{
333
+ "bucketName":{"shape":"BucketName"},
334
+ "prefix":{"shape":"Prefix"},
335
+ "classificationTypeUpdate":{"shape":"ClassificationTypeUpdate"}
336
+ }
337
+ },
338
+ "S3Resources":{
339
+ "type":"list",
340
+ "member":{"shape":"S3Resource"}
341
+ },
342
+ "S3ResourcesClassification":{
343
+ "type":"list",
344
+ "member":{"shape":"S3ResourceClassification"}
345
+ },
346
+ "S3ResourcesClassificationUpdate":{
347
+ "type":"list",
348
+ "member":{"shape":"S3ResourceClassificationUpdate"}
349
+ },
350
+ "UpdateS3ResourcesRequest":{
351
+ "type":"structure",
352
+ "required":["s3ResourcesUpdate"],
353
+ "members":{
354
+ "memberAccountId":{"shape":"AWSAccountId"},
355
+ "s3ResourcesUpdate":{"shape":"S3ResourcesClassificationUpdate"}
356
+ }
357
+ },
358
+ "UpdateS3ResourcesResult":{
359
+ "type":"structure",
360
+ "members":{
361
+ "failedS3Resources":{"shape":"FailedS3Resources"}
362
+ }
363
+ }
364
+ }
365
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version":"1.0",
3
+ "examples":{
4
+ }
5
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "pagination":{
3
+ "ListMemberAccounts":{
4
+ "input_token":"nextToken",
5
+ "output_token":"nextToken",
6
+ "limit_key":"maxResults"
7
+ },
8
+ "ListS3Resources":{
9
+ "input_token":"nextToken",
10
+ "output_token":"nextToken",
11
+ "limit_key":"maxResults"
12
+ }
13
+ }
14
+ }
@@ -1281,7 +1281,10 @@
1281
1281
  "Iops":{"shape":"IntegerOptional"},
1282
1282
  "OptionGroupName":{"shape":"String"},
1283
1283
  "CharacterSetName":{"shape":"String"},
1284
- "PubliclyAccessible":{"shape":"BooleanOptional"},
1284
+ "PubliclyAccessible":{
1285
+ "shape":"BooleanOptional",
1286
+ "deprecated":true
1287
+ },
1285
1288
  "Tags":{"shape":"TagList"},
1286
1289
  "DBClusterIdentifier":{"shape":"String"},
1287
1290
  "StorageType":{"shape":"String"},
@@ -1732,7 +1735,10 @@
1732
1735
  "OptionGroupMemberships":{"shape":"OptionGroupMembershipList"},
1733
1736
  "CharacterSetName":{"shape":"String"},
1734
1737
  "SecondaryAvailabilityZone":{"shape":"String"},
1735
- "PubliclyAccessible":{"shape":"Boolean"},
1738
+ "PubliclyAccessible":{
1739
+ "shape":"Boolean",
1740
+ "deprecated":true
1741
+ },
1736
1742
  "StatusInfos":{"shape":"DBInstanceStatusInfoList"},
1737
1743
  "StorageType":{"shape":"String"},
1738
1744
  "TdeCredentialArn":{"shape":"String"},
@@ -2805,7 +2811,10 @@
2805
2811
  "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
2806
2812
  "MonitoringInterval":{"shape":"IntegerOptional"},
2807
2813
  "DBPortNumber":{"shape":"IntegerOptional"},
2808
- "PubliclyAccessible":{"shape":"BooleanOptional"},
2814
+ "PubliclyAccessible":{
2815
+ "shape":"BooleanOptional",
2816
+ "deprecated":true
2817
+ },
2809
2818
  "MonitoringRoleArn":{"shape":"String"},
2810
2819
  "DomainIAMRoleName":{"shape":"String"},
2811
2820
  "PromotionTier":{"shape":"IntegerOptional"},
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0",
3
- "examples": {
2
+ "version":"1.0",
3
+ "examples":{
4
4
  }
5
5
  }
@@ -5489,6 +5489,7 @@
5489
5489
  "enum":[
5490
5490
  "WINDOWS",
5491
5491
  "AMAZON_LINUX",
5492
+ "AMAZON_LINUX_2",
5492
5493
  "UBUNTU",
5493
5494
  "REDHAT_ENTERPRISE_LINUX",
5494
5495
  "SUSE",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0",
3
- "examples": {
2
+ "version":"1.0",
3
+ "examples":{
4
4
  }
5
5
  }
@@ -112,6 +112,7 @@ module Aws
112
112
  MQ
113
113
  MTurk
114
114
  MachineLearning
115
+ Macie
115
116
  MarketplaceCommerceAnalytics
116
117
  MarketplaceEntitlementService
117
118
  MarketplaceMetering
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:Macie, {
2
+ api: "#{Aws::API_DIR}/macie/2017-12-19/api-2.json",
3
+ docs: "#{Aws::API_DIR}/macie/2017-12-19/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/macie/2017-12-19/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/macie/2017-12-19/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.72'
2
+ VERSION = '2.11.73'
3
3
  end
@@ -354,6 +354,10 @@
354
354
  "models": "machinelearning/2014-12-12",
355
355
  "endpoint": "machinelearning"
356
356
  },
357
+ "Macie": {
358
+ "models": "macie/2017-12-19",
359
+ "endpoint": "macie"
360
+ },
357
361
  "MarketplaceCommerceAnalytics": {
358
362
  "models": "marketplacecommerceanalytics/2015-07-01",
359
363
  "endpoint": "marketplacecommerceanalytics"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.72
4
+ version: 2.11.73
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: 2018-06-20 00:00:00.000000000 Z
11
+ date: 2018-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -366,6 +366,9 @@ files:
366
366
  - apis/machinelearning/2014-12-12/examples-1.json
367
367
  - apis/machinelearning/2014-12-12/paginators-1.json
368
368
  - apis/machinelearning/2014-12-12/waiters-2.json
369
+ - apis/macie/2017-12-19/api-2.json
370
+ - apis/macie/2017-12-19/examples-1.json
371
+ - apis/macie/2017-12-19/paginators-1.json
369
372
  - apis/marketplacecommerceanalytics/2015-07-01/api-2.json
370
373
  - apis/marketplacecommerceanalytics/2015-07-01/examples-1.json
371
374
  - apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json
@@ -697,6 +700,7 @@ files:
697
700
  - lib/aws-sdk-core/log/param_filter.rb
698
701
  - lib/aws-sdk-core/log/param_formatter.rb
699
702
  - lib/aws-sdk-core/machinelearning.rb
703
+ - lib/aws-sdk-core/macie.rb
700
704
  - lib/aws-sdk-core/marketplacecommerceanalytics.rb
701
705
  - lib/aws-sdk-core/marketplaceentitlementservice.rb
702
706
  - lib/aws-sdk-core/marketplacemetering.rb