aws-sdk-core 2.11.87 → 2.11.88

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eeb249bd912db76bcf3664a2d0da2d86c26c088b
4
- data.tar.gz: 5f0e4c49aee81460a18a1c16b8a341d405f57180
3
+ metadata.gz: eea21b1104ab3aeb02c586a7177a9c00cebe2ad0
4
+ data.tar.gz: 979ca9147850faaf917aa70809a452130e425874
5
5
  SHA512:
6
- metadata.gz: 5e1291cfb303a0d1fa4c0d99a12bfc0c096ffbc4718b2eaaa141f35d5551995abb05ce151864ef8404bfc3a02d453d3faf83cd70e275e0aedc8f0386c93974b6
7
- data.tar.gz: 445f008f31b684ba316e97d0bcf3231aeb182432fc735e9ea6254318390680781a47f5265c7bb3900d29dea5e8f757492272087a523a51296f775ba09ce07d2a
6
+ metadata.gz: 26ee5f71faef93ace469392f33440b091f9ecb81d365f768abefd94adf38d23815a0470e844735754b0fb9f6b04b6c1f2b1bd8b36094a793e1597ddf1b995b69
7
+ data.tar.gz: 4f8efb1d31c67149f079bd9f81e2bef04b72b2afac47bfe51ea86e31b4b0261ab9cf53c59de7c5e2eb22da626431bd93208b606bb47c13acbbf2ad447eb3b95b
@@ -538,7 +538,8 @@
538
538
  "serviceRoleArn":{"shape":"String"},
539
539
  "dynamodbConfig":{"shape":"DynamodbDataSourceConfig"},
540
540
  "lambdaConfig":{"shape":"LambdaDataSourceConfig"},
541
- "elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"}
541
+ "elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"},
542
+ "httpConfig":{"shape":"HttpDataSourceConfig"}
542
543
  }
543
544
  },
544
545
  "CreateDataSourceResponse":{
@@ -632,7 +633,8 @@
632
633
  "serviceRoleArn":{"shape":"String"},
633
634
  "dynamodbConfig":{"shape":"DynamodbDataSourceConfig"},
634
635
  "lambdaConfig":{"shape":"LambdaDataSourceConfig"},
635
- "elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"}
636
+ "elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"},
637
+ "httpConfig":{"shape":"HttpDataSourceConfig"}
636
638
  }
637
639
  },
638
640
  "DataSourceType":{
@@ -641,7 +643,8 @@
641
643
  "AWS_LAMBDA",
642
644
  "AMAZON_DYNAMODB",
643
645
  "AMAZON_ELASTICSEARCH",
644
- "NONE"
646
+ "NONE",
647
+ "HTTP"
645
648
  ]
646
649
  },
647
650
  "DataSources":{
@@ -978,6 +981,12 @@
978
981
  "type":"list",
979
982
  "member":{"shape":"GraphqlApi"}
980
983
  },
984
+ "HttpDataSourceConfig":{
985
+ "type":"structure",
986
+ "members":{
987
+ "endpoint":{"shape":"String"}
988
+ }
989
+ },
981
990
  "InternalFailureException":{
982
991
  "type":"structure",
983
992
  "members":{
@@ -1336,7 +1345,8 @@
1336
1345
  "serviceRoleArn":{"shape":"String"},
1337
1346
  "dynamodbConfig":{"shape":"DynamodbDataSourceConfig"},
1338
1347
  "lambdaConfig":{"shape":"LambdaDataSourceConfig"},
1339
- "elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"}
1348
+ "elasticsearchConfig":{"shape":"ElasticsearchDataSourceConfig"},
1349
+ "httpConfig":{"shape":"HttpDataSourceConfig"}
1340
1350
  }
1341
1351
  },
1342
1352
  "UpdateDataSourceResponse":{
@@ -394,7 +394,8 @@
394
394
  "name",
395
395
  "source",
396
396
  "artifacts",
397
- "environment"
397
+ "environment",
398
+ "serviceRole"
398
399
  ],
399
400
  "members":{
400
401
  "name":{"shape":"ProjectName"},
@@ -0,0 +1,416 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-01-12",
5
+ "endpointPrefix":"dlm",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"rest-json",
8
+ "serviceAbbreviation":"Amazon DLM",
9
+ "serviceFullName":"Amazon Data Lifecycle Manager",
10
+ "serviceId":"DLM",
11
+ "signatureVersion":"v4",
12
+ "signingName":"dlm",
13
+ "uid":"dlm-2018-01-12"
14
+ },
15
+ "operations":{
16
+ "CreateLifecyclePolicy":{
17
+ "name":"CreateLifecyclePolicy",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/policies"
21
+ },
22
+ "input":{"shape":"CreateLifecyclePolicyRequest"},
23
+ "output":{"shape":"CreateLifecyclePolicyResponse"},
24
+ "errors":[
25
+ {"shape":"InvalidRequestException"},
26
+ {"shape":"LimitExceededException"},
27
+ {"shape":"InternalServerException"}
28
+ ]
29
+ },
30
+ "DeleteLifecyclePolicy":{
31
+ "name":"DeleteLifecyclePolicy",
32
+ "http":{
33
+ "method":"DELETE",
34
+ "requestUri":"/policies/{policyId}/"
35
+ },
36
+ "input":{"shape":"DeleteLifecyclePolicyRequest"},
37
+ "output":{"shape":"DeleteLifecyclePolicyResponse"},
38
+ "errors":[
39
+ {"shape":"ResourceNotFoundException"},
40
+ {"shape":"InternalServerException"},
41
+ {"shape":"LimitExceededException"}
42
+ ]
43
+ },
44
+ "GetLifecyclePolicies":{
45
+ "name":"GetLifecyclePolicies",
46
+ "http":{
47
+ "method":"GET",
48
+ "requestUri":"/policies"
49
+ },
50
+ "input":{"shape":"GetLifecyclePoliciesRequest"},
51
+ "output":{"shape":"GetLifecyclePoliciesResponse"},
52
+ "errors":[
53
+ {"shape":"ResourceNotFoundException"},
54
+ {"shape":"InvalidRequestException"},
55
+ {"shape":"InternalServerException"},
56
+ {"shape":"LimitExceededException"}
57
+ ]
58
+ },
59
+ "GetLifecyclePolicy":{
60
+ "name":"GetLifecyclePolicy",
61
+ "http":{
62
+ "method":"GET",
63
+ "requestUri":"/policies/{policyId}/"
64
+ },
65
+ "input":{"shape":"GetLifecyclePolicyRequest"},
66
+ "output":{"shape":"GetLifecyclePolicyResponse"},
67
+ "errors":[
68
+ {"shape":"ResourceNotFoundException"},
69
+ {"shape":"InternalServerException"},
70
+ {"shape":"LimitExceededException"}
71
+ ]
72
+ },
73
+ "UpdateLifecyclePolicy":{
74
+ "name":"UpdateLifecyclePolicy",
75
+ "http":{
76
+ "method":"PATCH",
77
+ "requestUri":"/policies/{policyId}"
78
+ },
79
+ "input":{"shape":"UpdateLifecyclePolicyRequest"},
80
+ "output":{"shape":"UpdateLifecyclePolicyResponse"},
81
+ "errors":[
82
+ {"shape":"ResourceNotFoundException"},
83
+ {"shape":"InvalidRequestException"},
84
+ {"shape":"InternalServerException"},
85
+ {"shape":"LimitExceededException"}
86
+ ]
87
+ }
88
+ },
89
+ "shapes":{
90
+ "Count":{
91
+ "type":"integer",
92
+ "max":1000,
93
+ "min":1
94
+ },
95
+ "CreateLifecyclePolicyRequest":{
96
+ "type":"structure",
97
+ "required":[
98
+ "ExecutionRoleArn",
99
+ "Description",
100
+ "State",
101
+ "PolicyDetails"
102
+ ],
103
+ "members":{
104
+ "ExecutionRoleArn":{"shape":"ExecutionRoleArn"},
105
+ "Description":{"shape":"PolicyDescription"},
106
+ "State":{"shape":"SettablePolicyStateValues"},
107
+ "PolicyDetails":{"shape":"PolicyDetails"}
108
+ }
109
+ },
110
+ "CreateLifecyclePolicyResponse":{
111
+ "type":"structure",
112
+ "members":{
113
+ "PolicyId":{"shape":"PolicyId"}
114
+ }
115
+ },
116
+ "CreateRule":{
117
+ "type":"structure",
118
+ "required":[
119
+ "Interval",
120
+ "IntervalUnit"
121
+ ],
122
+ "members":{
123
+ "Interval":{"shape":"Interval"},
124
+ "IntervalUnit":{"shape":"IntervalUnitValues"},
125
+ "Times":{"shape":"TimesList"}
126
+ }
127
+ },
128
+ "DeleteLifecyclePolicyRequest":{
129
+ "type":"structure",
130
+ "required":["PolicyId"],
131
+ "members":{
132
+ "PolicyId":{
133
+ "shape":"PolicyId",
134
+ "location":"uri",
135
+ "locationName":"policyId"
136
+ }
137
+ }
138
+ },
139
+ "DeleteLifecyclePolicyResponse":{
140
+ "type":"structure",
141
+ "members":{
142
+ }
143
+ },
144
+ "ErrorCode":{"type":"string"},
145
+ "ErrorMessage":{"type":"string"},
146
+ "ExecutionRoleArn":{"type":"string"},
147
+ "GetLifecyclePoliciesRequest":{
148
+ "type":"structure",
149
+ "members":{
150
+ "PolicyIds":{
151
+ "shape":"PolicyIdList",
152
+ "location":"querystring",
153
+ "locationName":"policyIds"
154
+ },
155
+ "State":{
156
+ "shape":"GettablePolicyStateValues",
157
+ "location":"querystring",
158
+ "locationName":"state"
159
+ },
160
+ "ResourceTypes":{
161
+ "shape":"ResourceTypeValuesList",
162
+ "location":"querystring",
163
+ "locationName":"resourceTypes"
164
+ },
165
+ "TargetTags":{
166
+ "shape":"TargetTagsFilterList",
167
+ "location":"querystring",
168
+ "locationName":"targetTags"
169
+ },
170
+ "TagsToAdd":{
171
+ "shape":"TagsToAddFilterList",
172
+ "location":"querystring",
173
+ "locationName":"tagsToAdd"
174
+ }
175
+ }
176
+ },
177
+ "GetLifecyclePoliciesResponse":{
178
+ "type":"structure",
179
+ "members":{
180
+ "Policies":{"shape":"LifecyclePolicySummaryList"}
181
+ }
182
+ },
183
+ "GetLifecyclePolicyRequest":{
184
+ "type":"structure",
185
+ "required":["PolicyId"],
186
+ "members":{
187
+ "PolicyId":{
188
+ "shape":"PolicyId",
189
+ "location":"uri",
190
+ "locationName":"policyId"
191
+ }
192
+ }
193
+ },
194
+ "GetLifecyclePolicyResponse":{
195
+ "type":"structure",
196
+ "members":{
197
+ "Policy":{"shape":"LifecyclePolicy"}
198
+ }
199
+ },
200
+ "GettablePolicyStateValues":{
201
+ "type":"string",
202
+ "enum":[
203
+ "ENABLED",
204
+ "DISABLED",
205
+ "ERROR"
206
+ ]
207
+ },
208
+ "InternalServerException":{
209
+ "type":"structure",
210
+ "members":{
211
+ "Message":{"shape":"ErrorMessage"},
212
+ "Code":{"shape":"ErrorCode"}
213
+ },
214
+ "error":{"httpStatusCode":500},
215
+ "exception":true
216
+ },
217
+ "Interval":{
218
+ "type":"integer",
219
+ "min":1
220
+ },
221
+ "IntervalUnitValues":{
222
+ "type":"string",
223
+ "enum":["HOURS"]
224
+ },
225
+ "InvalidRequestException":{
226
+ "type":"structure",
227
+ "members":{
228
+ "Message":{"shape":"ErrorMessage"},
229
+ "Code":{"shape":"ErrorCode"},
230
+ "RequiredParameters":{"shape":"ParameterList"},
231
+ "MutuallyExclusiveParameters":{"shape":"ParameterList"}
232
+ },
233
+ "error":{"httpStatusCode":400},
234
+ "exception":true
235
+ },
236
+ "LifecyclePolicy":{
237
+ "type":"structure",
238
+ "members":{
239
+ "PolicyId":{"shape":"PolicyId"},
240
+ "Description":{"shape":"PolicyDescription"},
241
+ "State":{"shape":"GettablePolicyStateValues"},
242
+ "ExecutionRoleArn":{"shape":"ExecutionRoleArn"},
243
+ "DateCreated":{"shape":"Timestamp"},
244
+ "DateModified":{"shape":"Timestamp"},
245
+ "PolicyDetails":{"shape":"PolicyDetails"}
246
+ }
247
+ },
248
+ "LifecyclePolicySummary":{
249
+ "type":"structure",
250
+ "members":{
251
+ "PolicyId":{"shape":"PolicyId"},
252
+ "Description":{"shape":"PolicyDescription"},
253
+ "State":{"shape":"GettablePolicyStateValues"}
254
+ }
255
+ },
256
+ "LifecyclePolicySummaryList":{
257
+ "type":"list",
258
+ "member":{"shape":"LifecyclePolicySummary"}
259
+ },
260
+ "LimitExceededException":{
261
+ "type":"structure",
262
+ "members":{
263
+ "Message":{"shape":"ErrorMessage"},
264
+ "Code":{"shape":"ErrorCode"},
265
+ "ResourceType":{"shape":"String"}
266
+ },
267
+ "error":{"httpStatusCode":429},
268
+ "exception":true
269
+ },
270
+ "Parameter":{"type":"string"},
271
+ "ParameterList":{
272
+ "type":"list",
273
+ "member":{"shape":"Parameter"}
274
+ },
275
+ "PolicyDescription":{
276
+ "type":"string",
277
+ "max":500,
278
+ "min":0
279
+ },
280
+ "PolicyDetails":{
281
+ "type":"structure",
282
+ "members":{
283
+ "ResourceTypes":{"shape":"ResourceTypeValuesList"},
284
+ "TargetTags":{"shape":"TargetTagList"},
285
+ "Schedules":{"shape":"ScheduleList"}
286
+ }
287
+ },
288
+ "PolicyId":{"type":"string"},
289
+ "PolicyIdList":{
290
+ "type":"list",
291
+ "member":{"shape":"PolicyId"}
292
+ },
293
+ "ResourceNotFoundException":{
294
+ "type":"structure",
295
+ "members":{
296
+ "Message":{"shape":"ErrorMessage"},
297
+ "Code":{"shape":"ErrorCode"},
298
+ "ResourceType":{"shape":"String"},
299
+ "ResourceIds":{"shape":"PolicyIdList"}
300
+ },
301
+ "error":{"httpStatusCode":404},
302
+ "exception":true
303
+ },
304
+ "ResourceTypeValues":{
305
+ "type":"string",
306
+ "enum":["VOLUME"]
307
+ },
308
+ "ResourceTypeValuesList":{
309
+ "type":"list",
310
+ "member":{"shape":"ResourceTypeValues"},
311
+ "max":1,
312
+ "min":1
313
+ },
314
+ "RetainRule":{
315
+ "type":"structure",
316
+ "required":["Count"],
317
+ "members":{
318
+ "Count":{"shape":"Count"}
319
+ }
320
+ },
321
+ "Schedule":{
322
+ "type":"structure",
323
+ "members":{
324
+ "Name":{"shape":"ScheduleName"},
325
+ "TagsToAdd":{"shape":"TagsToAddList"},
326
+ "CreateRule":{"shape":"CreateRule"},
327
+ "RetainRule":{"shape":"RetainRule"}
328
+ }
329
+ },
330
+ "ScheduleList":{
331
+ "type":"list",
332
+ "member":{"shape":"Schedule"},
333
+ "max":1,
334
+ "min":1
335
+ },
336
+ "ScheduleName":{
337
+ "type":"string",
338
+ "max":500,
339
+ "min":0
340
+ },
341
+ "SettablePolicyStateValues":{
342
+ "type":"string",
343
+ "enum":[
344
+ "ENABLED",
345
+ "DISABLED"
346
+ ]
347
+ },
348
+ "String":{"type":"string"},
349
+ "Tag":{
350
+ "type":"structure",
351
+ "required":[
352
+ "Key",
353
+ "Value"
354
+ ],
355
+ "members":{
356
+ "Key":{"shape":"String"},
357
+ "Value":{"shape":"String"}
358
+ }
359
+ },
360
+ "TagFilter":{"type":"string"},
361
+ "TagsToAddFilterList":{
362
+ "type":"list",
363
+ "member":{"shape":"TagFilter"},
364
+ "max":50,
365
+ "min":0
366
+ },
367
+ "TagsToAddList":{
368
+ "type":"list",
369
+ "member":{"shape":"Tag"},
370
+ "max":50,
371
+ "min":0
372
+ },
373
+ "TargetTagList":{
374
+ "type":"list",
375
+ "member":{"shape":"Tag"},
376
+ "max":50,
377
+ "min":1
378
+ },
379
+ "TargetTagsFilterList":{
380
+ "type":"list",
381
+ "member":{"shape":"TagFilter"},
382
+ "max":50,
383
+ "min":1
384
+ },
385
+ "Time":{
386
+ "type":"string",
387
+ "pattern":"^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$"
388
+ },
389
+ "TimesList":{
390
+ "type":"list",
391
+ "member":{"shape":"Time"},
392
+ "max":1
393
+ },
394
+ "Timestamp":{"type":"timestamp"},
395
+ "UpdateLifecyclePolicyRequest":{
396
+ "type":"structure",
397
+ "required":["PolicyId"],
398
+ "members":{
399
+ "PolicyId":{
400
+ "shape":"PolicyId",
401
+ "location":"uri",
402
+ "locationName":"policyId"
403
+ },
404
+ "ExecutionRoleArn":{"shape":"ExecutionRoleArn"},
405
+ "State":{"shape":"SettablePolicyStateValues"},
406
+ "Description":{"shape":"PolicyDescription"},
407
+ "PolicyDetails":{"shape":"PolicyDetails"}
408
+ }
409
+ },
410
+ "UpdateLifecyclePolicyResponse":{
411
+ "type":"structure",
412
+ "members":{
413
+ }
414
+ }
415
+ }
416
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -6,6 +6,7 @@
6
6
  "protocol":"rest-json",
7
7
  "serviceAbbreviation":"EFS",
8
8
  "serviceFullName":"Amazon Elastic File System",
9
+ "serviceId":"EFS",
9
10
  "signatureVersion":"v4",
10
11
  "uid":"elasticfilesystem-2015-02-01"
11
12
  },
@@ -23,7 +24,9 @@
23
24
  {"shape":"BadRequest"},
24
25
  {"shape":"InternalServerError"},
25
26
  {"shape":"FileSystemAlreadyExists"},
26
- {"shape":"FileSystemLimitExceeded"}
27
+ {"shape":"FileSystemLimitExceeded"},
28
+ {"shape":"InsufficientThroughputCapacity"},
29
+ {"shape":"ThroughputLimitExceeded"}
27
30
  ]
28
31
  },
29
32
  "CreateMountTarget":{
@@ -186,6 +189,25 @@
186
189
  {"shape":"SecurityGroupLimitExceeded"},
187
190
  {"shape":"SecurityGroupNotFound"}
188
191
  ]
192
+ },
193
+ "UpdateFileSystem":{
194
+ "name":"UpdateFileSystem",
195
+ "http":{
196
+ "method":"PUT",
197
+ "requestUri":"/2015-02-01/file-systems/{FileSystemId}",
198
+ "responseCode":202
199
+ },
200
+ "input":{"shape":"UpdateFileSystemRequest"},
201
+ "output":{"shape":"FileSystemDescription"},
202
+ "errors":[
203
+ {"shape":"BadRequest"},
204
+ {"shape":"FileSystemNotFound"},
205
+ {"shape":"IncorrectFileSystemLifeCycleState"},
206
+ {"shape":"InsufficientThroughputCapacity"},
207
+ {"shape":"InternalServerError"},
208
+ {"shape":"ThroughputLimitExceeded"},
209
+ {"shape":"TooManyRequests"}
210
+ ]
189
211
  }
190
212
  },
191
213
  "shapes":{
@@ -207,7 +229,9 @@
207
229
  "CreationToken":{"shape":"CreationToken"},
208
230
  "PerformanceMode":{"shape":"PerformanceMode"},
209
231
  "Encrypted":{"shape":"Encrypted"},
210
- "KmsKeyId":{"shape":"KmsKeyId"}
232
+ "KmsKeyId":{"shape":"KmsKeyId"},
233
+ "ThroughputMode":{"shape":"ThroughputMode"},
234
+ "ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"}
211
235
  }
212
236
  },
213
237
  "CreateMountTargetRequest":{
@@ -447,7 +471,9 @@
447
471
  "SizeInBytes":{"shape":"FileSystemSize"},
448
472
  "PerformanceMode":{"shape":"PerformanceMode"},
449
473
  "Encrypted":{"shape":"Encrypted"},
450
- "KmsKeyId":{"shape":"KmsKeyId"}
474
+ "KmsKeyId":{"shape":"KmsKeyId"},
475
+ "ThroughputMode":{"shape":"ThroughputMode"},
476
+ "ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"}
451
477
  }
452
478
  },
453
479
  "FileSystemDescriptions":{
@@ -517,6 +543,16 @@
517
543
  "error":{"httpStatusCode":409},
518
544
  "exception":true
519
545
  },
546
+ "InsufficientThroughputCapacity":{
547
+ "type":"structure",
548
+ "required":["ErrorCode"],
549
+ "members":{
550
+ "ErrorCode":{"shape":"ErrorCode"},
551
+ "Message":{"shape":"ErrorMessage"}
552
+ },
553
+ "error":{"httpStatusCode":503},
554
+ "exception":true
555
+ },
520
556
  "InternalServerError":{
521
557
  "type":"structure",
522
558
  "required":["ErrorCode"],
@@ -548,6 +584,7 @@
548
584
  "enum":[
549
585
  "creating",
550
586
  "available",
587
+ "updating",
551
588
  "deleting",
552
589
  "deleted"
553
590
  ]
@@ -644,6 +681,10 @@
644
681
  "maxIO"
645
682
  ]
646
683
  },
684
+ "ProvisionedThroughputInMibps":{
685
+ "type":"double",
686
+ "min":0.0
687
+ },
647
688
  "SecurityGroup":{"type":"string"},
648
689
  "SecurityGroupLimitExceeded":{
649
690
  "type":"structure",
@@ -709,7 +750,34 @@
709
750
  "type":"list",
710
751
  "member":{"shape":"Tag"}
711
752
  },
753
+ "ThroughputLimitExceeded":{
754
+ "type":"structure",
755
+ "required":["ErrorCode"],
756
+ "members":{
757
+ "ErrorCode":{"shape":"ErrorCode"},
758
+ "Message":{"shape":"ErrorMessage"}
759
+ },
760
+ "error":{"httpStatusCode":400},
761
+ "exception":true
762
+ },
763
+ "ThroughputMode":{
764
+ "type":"string",
765
+ "enum":[
766
+ "bursting",
767
+ "provisioned"
768
+ ]
769
+ },
712
770
  "Timestamp":{"type":"timestamp"},
771
+ "TooManyRequests":{
772
+ "type":"structure",
773
+ "required":["ErrorCode"],
774
+ "members":{
775
+ "ErrorCode":{"shape":"ErrorCode"},
776
+ "Message":{"shape":"ErrorMessage"}
777
+ },
778
+ "error":{"httpStatusCode":429},
779
+ "exception":true
780
+ },
713
781
  "UnsupportedAvailabilityZone":{
714
782
  "type":"structure",
715
783
  "required":["ErrorCode"],
@@ -719,6 +787,19 @@
719
787
  },
720
788
  "error":{"httpStatusCode":400},
721
789
  "exception":true
790
+ },
791
+ "UpdateFileSystemRequest":{
792
+ "type":"structure",
793
+ "required":["FileSystemId"],
794
+ "members":{
795
+ "FileSystemId":{
796
+ "shape":"FileSystemId",
797
+ "location":"uri",
798
+ "locationName":"FileSystemId"
799
+ },
800
+ "ThroughputMode":{"shape":"ThroughputMode"},
801
+ "ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"}
802
+ }
722
803
  }
723
804
  }
724
805
  }
@@ -0,0 +1,18 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "DescribeFileSystems",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "DeleteFileSystem",
12
+ "input": {
13
+ "FileSystemId": "fs-c5a1446c"
14
+ },
15
+ "errorExpectedFromService": true
16
+ }
17
+ ]
18
+ }
@@ -7,6 +7,7 @@
7
7
  "protocol":"json",
8
8
  "serviceAbbreviation":"Amazon EMR",
9
9
  "serviceFullName":"Amazon Elastic MapReduce",
10
+ "serviceId":"EMR",
10
11
  "signatureVersion":"v4",
11
12
  "targetPrefix":"ElasticMapReduce",
12
13
  "timestampFormat":"unixTimestamp",
@@ -0,0 +1,18 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListClusters",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "DescribeCluster",
12
+ "input": {
13
+ "ClusterId": "fake_cluster"
14
+ },
15
+ "errorExpectedFromService": true
16
+ }
17
+ ]
18
+ }
@@ -529,6 +529,19 @@
529
529
  {"shape":"ServiceFailureException"}
530
530
  ]
531
531
  },
532
+ "DeleteRolePermissionsBoundary":{
533
+ "name":"DeleteRolePermissionsBoundary",
534
+ "http":{
535
+ "method":"POST",
536
+ "requestUri":"/"
537
+ },
538
+ "input":{"shape":"DeleteRolePermissionsBoundaryRequest"},
539
+ "errors":[
540
+ {"shape":"NoSuchEntityException"},
541
+ {"shape":"UnmodifiableEntityException"},
542
+ {"shape":"ServiceFailureException"}
543
+ ]
544
+ },
532
545
  "DeleteRolePolicy":{
533
546
  "name":"DeleteRolePolicy",
534
547
  "http":{
@@ -637,6 +650,18 @@
637
650
  {"shape":"ServiceFailureException"}
638
651
  ]
639
652
  },
653
+ "DeleteUserPermissionsBoundary":{
654
+ "name":"DeleteUserPermissionsBoundary",
655
+ "http":{
656
+ "method":"POST",
657
+ "requestUri":"/"
658
+ },
659
+ "input":{"shape":"DeleteUserPermissionsBoundaryRequest"},
660
+ "errors":[
661
+ {"shape":"NoSuchEntityException"},
662
+ {"shape":"ServiceFailureException"}
663
+ ]
664
+ },
640
665
  "DeleteUserPolicy":{
641
666
  "name":"DeleteUserPolicy",
642
667
  "http":{
@@ -1495,6 +1520,21 @@
1495
1520
  {"shape":"ServiceFailureException"}
1496
1521
  ]
1497
1522
  },
1523
+ "PutRolePermissionsBoundary":{
1524
+ "name":"PutRolePermissionsBoundary",
1525
+ "http":{
1526
+ "method":"POST",
1527
+ "requestUri":"/"
1528
+ },
1529
+ "input":{"shape":"PutRolePermissionsBoundaryRequest"},
1530
+ "errors":[
1531
+ {"shape":"NoSuchEntityException"},
1532
+ {"shape":"InvalidInputException"},
1533
+ {"shape":"UnmodifiableEntityException"},
1534
+ {"shape":"PolicyNotAttachableException"},
1535
+ {"shape":"ServiceFailureException"}
1536
+ ]
1537
+ },
1498
1538
  "PutRolePolicy":{
1499
1539
  "name":"PutRolePolicy",
1500
1540
  "http":{
@@ -1510,6 +1550,20 @@
1510
1550
  {"shape":"ServiceFailureException"}
1511
1551
  ]
1512
1552
  },
1553
+ "PutUserPermissionsBoundary":{
1554
+ "name":"PutUserPermissionsBoundary",
1555
+ "http":{
1556
+ "method":"POST",
1557
+ "requestUri":"/"
1558
+ },
1559
+ "input":{"shape":"PutUserPermissionsBoundaryRequest"},
1560
+ "errors":[
1561
+ {"shape":"NoSuchEntityException"},
1562
+ {"shape":"InvalidInputException"},
1563
+ {"shape":"PolicyNotAttachableException"},
1564
+ {"shape":"ServiceFailureException"}
1565
+ ]
1566
+ },
1513
1567
  "PutUserPolicy":{
1514
1568
  "name":"PutUserPolicy",
1515
1569
  "http":{
@@ -2018,6 +2072,13 @@
2018
2072
  "PolicyArn":{"shape":"arnType"}
2019
2073
  }
2020
2074
  },
2075
+ "AttachedPermissionsBoundary":{
2076
+ "type":"structure",
2077
+ "members":{
2078
+ "PermissionsBoundaryType":{"shape":"PermissionsBoundaryAttachmentType"},
2079
+ "PermissionsBoundaryArn":{"shape":"arnType"}
2080
+ }
2081
+ },
2021
2082
  "AttachedPolicy":{
2022
2083
  "type":"structure",
2023
2084
  "members":{
@@ -2219,7 +2280,8 @@
2219
2280
  "RoleName":{"shape":"roleNameType"},
2220
2281
  "AssumeRolePolicyDocument":{"shape":"policyDocumentType"},
2221
2282
  "Description":{"shape":"roleDescriptionType"},
2222
- "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"}
2283
+ "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"},
2284
+ "PermissionsBoundary":{"shape":"arnType"}
2223
2285
  }
2224
2286
  },
2225
2287
  "CreateRoleResponse":{
@@ -2283,7 +2345,8 @@
2283
2345
  "required":["UserName"],
2284
2346
  "members":{
2285
2347
  "Path":{"shape":"pathType"},
2286
- "UserName":{"shape":"userNameType"}
2348
+ "UserName":{"shape":"userNameType"},
2349
+ "PermissionsBoundary":{"shape":"arnType"}
2287
2350
  }
2288
2351
  },
2289
2352
  "CreateUserResponse":{
@@ -2438,6 +2501,13 @@
2438
2501
  "VersionId":{"shape":"policyVersionIdType"}
2439
2502
  }
2440
2503
  },
2504
+ "DeleteRolePermissionsBoundaryRequest":{
2505
+ "type":"structure",
2506
+ "required":["RoleName"],
2507
+ "members":{
2508
+ "RoleName":{"shape":"roleNameType"}
2509
+ }
2510
+ },
2441
2511
  "DeleteRolePolicyRequest":{
2442
2512
  "type":"structure",
2443
2513
  "required":[
@@ -2511,6 +2581,13 @@
2511
2581
  "CertificateId":{"shape":"certificateIdType"}
2512
2582
  }
2513
2583
  },
2584
+ "DeleteUserPermissionsBoundaryRequest":{
2585
+ "type":"structure",
2586
+ "required":["UserName"],
2587
+ "members":{
2588
+ "UserName":{"shape":"userNameType"}
2589
+ }
2590
+ },
2514
2591
  "DeleteUserPolicyRequest":{
2515
2592
  "type":"structure",
2516
2593
  "required":[
@@ -3261,6 +3338,7 @@
3261
3338
  "PolicyArn":{"shape":"arnType"},
3262
3339
  "EntityFilter":{"shape":"EntityType"},
3263
3340
  "PathPrefix":{"shape":"pathType"},
3341
+ "PolicyUsageFilter":{"shape":"PolicyUsageType"},
3264
3342
  "Marker":{"shape":"markerType"},
3265
3343
  "MaxItems":{"shape":"maxItemsType"}
3266
3344
  }
@@ -3397,6 +3475,7 @@
3397
3475
  "Scope":{"shape":"policyScopeType"},
3398
3476
  "OnlyAttached":{"shape":"booleanType"},
3399
3477
  "PathPrefix":{"shape":"policyPathType"},
3478
+ "PolicyUsageFilter":{"shape":"PolicyUsageType"},
3400
3479
  "Marker":{"shape":"markerType"},
3401
3480
  "MaxItems":{"shape":"maxItemsType"}
3402
3481
  }
@@ -3645,6 +3724,7 @@
3645
3724
  "Path":{"shape":"policyPathType"},
3646
3725
  "DefaultVersionId":{"shape":"policyVersionIdType"},
3647
3726
  "AttachmentCount":{"shape":"attachmentCountType"},
3727
+ "PermissionsBoundaryUsageCount":{"shape":"attachmentCountType"},
3648
3728
  "IsAttachable":{"shape":"booleanType"},
3649
3729
  "Description":{"shape":"policyDescriptionType"},
3650
3730
  "CreateDate":{"shape":"dateType"},
@@ -3716,6 +3796,10 @@
3716
3796
  },
3717
3797
  "exception":true
3718
3798
  },
3799
+ "PermissionsBoundaryAttachmentType":{
3800
+ "type":"string",
3801
+ "enum":["PermissionsBoundaryPolicy"]
3802
+ },
3719
3803
  "Policy":{
3720
3804
  "type":"structure",
3721
3805
  "members":{
@@ -3725,6 +3809,7 @@
3725
3809
  "Path":{"shape":"policyPathType"},
3726
3810
  "DefaultVersionId":{"shape":"policyVersionIdType"},
3727
3811
  "AttachmentCount":{"shape":"attachmentCountType"},
3812
+ "PermissionsBoundaryUsageCount":{"shape":"attachmentCountType"},
3728
3813
  "IsAttachable":{"shape":"booleanType"},
3729
3814
  "Description":{"shape":"policyDescriptionType"},
3730
3815
  "CreateDate":{"shape":"dateType"},
@@ -3804,6 +3889,13 @@
3804
3889
  "none"
3805
3890
  ]
3806
3891
  },
3892
+ "PolicyUsageType":{
3893
+ "type":"string",
3894
+ "enum":[
3895
+ "PermissionsPolicy",
3896
+ "PermissionsBoundary"
3897
+ ]
3898
+ },
3807
3899
  "PolicyUser":{
3808
3900
  "type":"structure",
3809
3901
  "members":{
@@ -3844,6 +3936,17 @@
3844
3936
  "PolicyDocument":{"shape":"policyDocumentType"}
3845
3937
  }
3846
3938
  },
3939
+ "PutRolePermissionsBoundaryRequest":{
3940
+ "type":"structure",
3941
+ "required":[
3942
+ "RoleName",
3943
+ "PermissionsBoundary"
3944
+ ],
3945
+ "members":{
3946
+ "RoleName":{"shape":"roleNameType"},
3947
+ "PermissionsBoundary":{"shape":"arnType"}
3948
+ }
3949
+ },
3847
3950
  "PutRolePolicyRequest":{
3848
3951
  "type":"structure",
3849
3952
  "required":[
@@ -3857,6 +3960,17 @@
3857
3960
  "PolicyDocument":{"shape":"policyDocumentType"}
3858
3961
  }
3859
3962
  },
3963
+ "PutUserPermissionsBoundaryRequest":{
3964
+ "type":"structure",
3965
+ "required":[
3966
+ "UserName",
3967
+ "PermissionsBoundary"
3968
+ ],
3969
+ "members":{
3970
+ "UserName":{"shape":"userNameType"},
3971
+ "PermissionsBoundary":{"shape":"arnType"}
3972
+ }
3973
+ },
3860
3974
  "PutUserPolicyRequest":{
3861
3975
  "type":"structure",
3862
3976
  "required":[
@@ -4004,7 +4118,8 @@
4004
4118
  "CreateDate":{"shape":"dateType"},
4005
4119
  "AssumeRolePolicyDocument":{"shape":"policyDocumentType"},
4006
4120
  "Description":{"shape":"roleDescriptionType"},
4007
- "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"}
4121
+ "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"},
4122
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
4008
4123
  }
4009
4124
  },
4010
4125
  "RoleDetail":{
@@ -4018,7 +4133,8 @@
4018
4133
  "AssumeRolePolicyDocument":{"shape":"policyDocumentType"},
4019
4134
  "InstanceProfileList":{"shape":"instanceProfileListType"},
4020
4135
  "RolePolicyList":{"shape":"policyDetailListType"},
4021
- "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"}
4136
+ "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"},
4137
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
4022
4138
  }
4023
4139
  },
4024
4140
  "RoleUsageListType":{
@@ -4540,7 +4656,8 @@
4540
4656
  "UserId":{"shape":"idType"},
4541
4657
  "Arn":{"shape":"arnType"},
4542
4658
  "CreateDate":{"shape":"dateType"},
4543
- "PasswordLastUsed":{"shape":"dateType"}
4659
+ "PasswordLastUsed":{"shape":"dateType"},
4660
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
4544
4661
  }
4545
4662
  },
4546
4663
  "UserDetail":{
@@ -4553,7 +4670,8 @@
4553
4670
  "CreateDate":{"shape":"dateType"},
4554
4671
  "UserPolicyList":{"shape":"policyDetailListType"},
4555
4672
  "GroupList":{"shape":"groupNameListType"},
4556
- "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"}
4673
+ "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"},
4674
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
4557
4675
  }
4558
4676
  },
4559
4677
  "VirtualMFADevice":{
@@ -0,0 +1,18 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-east-1",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListUsers",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "GetUser",
12
+ "input": {
13
+ "UserName": "fake_user"
14
+ },
15
+ "errorExpectedFromService": true
16
+ }
17
+ ]
18
+ }
@@ -62,6 +62,7 @@ module Aws
62
62
  CostExplorer
63
63
  CostandUsageReportService
64
64
  DAX
65
+ DLM
65
66
  DataPipeline
66
67
  DatabaseMigrationService
67
68
  DeviceFarm
@@ -57,9 +57,12 @@ module Aws
57
57
 
58
58
  def is_eventstream?(api, shape_name)
59
59
  shape = api['shapes'][shape_name]
60
- if shape['type'] == 'structure' && shape['payload']
61
- payload_ref = shape['members'][shape['payload']]
62
- api['shapes'][payload_ref['shape']]['eventstream']
60
+ if shape['type'] == 'structure'
61
+ eventstream = false
62
+ shape['members'].each do |_, m_ref|
63
+ eventstream ||= api['shapes'][m_ref['shape']]['eventstream']
64
+ end
65
+ eventstream
63
66
  else
64
67
  # non structure request/response shape
65
68
  # check if it's eventstream itself
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:DLM, {
2
+ api: "#{Aws::API_DIR}/dlm/2018-01-12/api-2.json",
3
+ docs: "#{Aws::API_DIR}/dlm/2018-01-12/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/dlm/2018-01-12/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/dlm/2018-01-12/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.87'
2
+ VERSION = '2.11.88'
3
3
  end
@@ -154,6 +154,10 @@
154
154
  "models": "dax/2017-04-19",
155
155
  "endpoint": "dax"
156
156
  },
157
+ "DLM": {
158
+ "models": "dlm/2018-01-12",
159
+ "endpoint": "dlm"
160
+ },
157
161
  "DataPipeline": {
158
162
  "models": "datapipeline/2012-10-29",
159
163
  "endpoint": "datapipeline"
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.87
4
+ version: 2.11.88
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-07-11 00:00:00.000000000 Z
11
+ date: 2018-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -207,6 +207,9 @@ files:
207
207
  - apis/discovery/2015-11-01/api-2.json
208
208
  - apis/discovery/2015-11-01/examples-1.json
209
209
  - apis/discovery/2015-11-01/paginators-1.json
210
+ - apis/dlm/2018-01-12/api-2.json
211
+ - apis/dlm/2018-01-12/examples-1.json
212
+ - apis/dlm/2018-01-12/paginators-1.json
210
213
  - apis/dms/2016-01-01/api-2.json
211
214
  - apis/dms/2016-01-01/examples-1.json
212
215
  - apis/dms/2016-01-01/paginators-1.json
@@ -265,6 +268,7 @@ files:
265
268
  - apis/elasticfilesystem/2015-02-01/api-2.json
266
269
  - apis/elasticfilesystem/2015-02-01/examples-1.json
267
270
  - apis/elasticfilesystem/2015-02-01/paginators-1.json
271
+ - apis/elasticfilesystem/2015-02-01/smoke.json
268
272
  - apis/elasticloadbalancing/2012-06-01/api-2.json
269
273
  - apis/elasticloadbalancing/2012-06-01/examples-1.json
270
274
  - apis/elasticloadbalancing/2012-06-01/paginators-1.json
@@ -276,6 +280,7 @@ files:
276
280
  - apis/elasticmapreduce/2009-03-31/api-2.json
277
281
  - apis/elasticmapreduce/2009-03-31/examples-1.json
278
282
  - apis/elasticmapreduce/2009-03-31/paginators-1.json
283
+ - apis/elasticmapreduce/2009-03-31/smoke.json
279
284
  - apis/elasticmapreduce/2009-03-31/waiters-2.json
280
285
  - apis/elastictranscoder/2012-09-25/api-2.json
281
286
  - apis/elastictranscoder/2012-09-25/examples-1.json
@@ -321,6 +326,7 @@ files:
321
326
  - apis/iam/2010-05-08/examples-1.json
322
327
  - apis/iam/2010-05-08/paginators-1.json
323
328
  - apis/iam/2010-05-08/resources-1.json
329
+ - apis/iam/2010-05-08/smoke.json
324
330
  - apis/iam/2010-05-08/waiters-2.json
325
331
  - apis/importexport/2010-06-01/api-2.json
326
332
  - apis/importexport/2010-06-01/paginators-1.json
@@ -655,6 +661,7 @@ files:
655
661
  - lib/aws-sdk-core/devicefarm.rb
656
662
  - lib/aws-sdk-core/directconnect.rb
657
663
  - lib/aws-sdk-core/directoryservice.rb
664
+ - lib/aws-sdk-core/dlm.rb
658
665
  - lib/aws-sdk-core/dynamodb.rb
659
666
  - lib/aws-sdk-core/dynamodb/attribute_value.rb
660
667
  - lib/aws-sdk-core/dynamodbstreams.rb