aws-sdk-core 2.8.4 → 2.8.5

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: 81f96ac9323ee548760921f715559d5ed361bf00
4
- data.tar.gz: 2cecccf8df75e284f315884d010b474c9e4b1a78
3
+ metadata.gz: 176d5afbf714aebd9dbafdbeda8b1cc1ca18de85
4
+ data.tar.gz: b04fb7f5fc9d31aca0c0947afab1c52a3a44c624
5
5
  SHA512:
6
- metadata.gz: 24e14d7cd8ac9369312d507a4d0e14ea1a11badf5506d781e90a1676643b7a3b8fcb1e539b9bc45dbdf3ac18ef1635b6cfa6ce2233c30bdd17df70fc70a218e1
7
- data.tar.gz: 4964c8b07333ae1d3a8c63dc57f12a26b86cc725cbeb1fbfdc81acb52924ff8b0df2dabc12bf4d504e061d8ac594af0361ac5839b4809d89499c4254c600c132
6
+ metadata.gz: 750b164f8314b12d6cdf15ad342962659fdbca83bf7a5f5cb4c6a55b791db0d11310efb663047507f345cd43dc186701e0ec1d77a9c5afd552f68496747b70af
7
+ data.tar.gz: f842e655fd6eda9eeea35f21c594063d2595befe834a07f23be7ed943de47a9e921c0bcbbc8e84098542aecf8af8f6acca15211d14bccb2cac4655424b8a2e62
@@ -1,4 +1,34 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListApplicationRevisions": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "result_key": "revisions"
7
+ },
8
+ "ListApplications": {
9
+ "input_token": "nextToken",
10
+ "output_token": "nextToken",
11
+ "result_key": "applications"
12
+ },
13
+ "ListDeploymentConfigs": {
14
+ "input_token": "nextToken",
15
+ "output_token": "nextToken",
16
+ "result_key": "deploymentConfigsList"
17
+ },
18
+ "ListDeploymentGroups": {
19
+ "input_token": "nextToken",
20
+ "output_token": "nextToken",
21
+ "result_key": "deploymentGroups"
22
+ },
23
+ "ListDeploymentInstances": {
24
+ "input_token": "nextToken",
25
+ "output_token": "nextToken",
26
+ "result_key": "instancesList"
27
+ },
28
+ "ListDeployments": {
29
+ "input_token": "nextToken",
30
+ "output_token": "nextToken",
31
+ "result_key": "deployments"
32
+ }
3
33
  }
4
- }
34
+ }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "version":"2.0",
3
3
  "metadata":{
4
- "uid":"elasticmapreduce-2009-03-31",
5
4
  "apiVersion":"2009-03-31",
6
5
  "endpointPrefix":"elasticmapreduce",
7
6
  "jsonVersion":"1.1",
@@ -10,9 +9,23 @@
10
9
  "serviceFullName":"Amazon Elastic MapReduce",
11
10
  "signatureVersion":"v4",
12
11
  "targetPrefix":"ElasticMapReduce",
13
- "timestampFormat":"unixTimestamp"
12
+ "timestampFormat":"unixTimestamp",
13
+ "uid":"elasticmapreduce-2009-03-31"
14
14
  },
15
15
  "operations":{
16
+ "AddInstanceFleet":{
17
+ "name":"AddInstanceFleet",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"AddInstanceFleetInput"},
23
+ "output":{"shape":"AddInstanceFleetOutput"},
24
+ "errors":[
25
+ {"shape":"InternalServerException"},
26
+ {"shape":"InvalidRequestException"}
27
+ ]
28
+ },
16
29
  "AddInstanceGroups":{
17
30
  "name":"AddInstanceGroups",
18
31
  "http":{
@@ -167,6 +180,19 @@
167
180
  {"shape":"InvalidRequestException"}
168
181
  ]
169
182
  },
183
+ "ListInstanceFleets":{
184
+ "name":"ListInstanceFleets",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/"
188
+ },
189
+ "input":{"shape":"ListInstanceFleetsInput"},
190
+ "output":{"shape":"ListInstanceFleetsOutput"},
191
+ "errors":[
192
+ {"shape":"InternalServerException"},
193
+ {"shape":"InvalidRequestException"}
194
+ ]
195
+ },
170
196
  "ListInstanceGroups":{
171
197
  "name":"ListInstanceGroups",
172
198
  "http":{
@@ -219,6 +245,18 @@
219
245
  {"shape":"InvalidRequestException"}
220
246
  ]
221
247
  },
248
+ "ModifyInstanceFleet":{
249
+ "name":"ModifyInstanceFleet",
250
+ "http":{
251
+ "method":"POST",
252
+ "requestUri":"/"
253
+ },
254
+ "input":{"shape":"ModifyInstanceFleetInput"},
255
+ "errors":[
256
+ {"shape":"InternalServerException"},
257
+ {"shape":"InvalidRequestException"}
258
+ ]
259
+ },
222
260
  "ModifyInstanceGroups":{
223
261
  "name":"ModifyInstanceGroups",
224
262
  "http":{
@@ -317,6 +355,24 @@
317
355
  "CONTINUE"
318
356
  ]
319
357
  },
358
+ "AddInstanceFleetInput":{
359
+ "type":"structure",
360
+ "required":[
361
+ "ClusterId",
362
+ "InstanceFleet"
363
+ ],
364
+ "members":{
365
+ "ClusterId":{"shape":"XmlStringMaxLen256"},
366
+ "InstanceFleet":{"shape":"InstanceFleetConfig"}
367
+ }
368
+ },
369
+ "AddInstanceFleetOutput":{
370
+ "type":"structure",
371
+ "members":{
372
+ "ClusterId":{"shape":"XmlStringMaxLen256"},
373
+ "InstanceFleetId":{"shape":"InstanceFleetId"}
374
+ }
375
+ },
320
376
  "AddInstanceGroupsInput":{
321
377
  "type":"structure",
322
378
  "required":[
@@ -527,6 +583,7 @@
527
583
  "Name":{"shape":"String"},
528
584
  "Status":{"shape":"ClusterStatus"},
529
585
  "Ec2InstanceAttributes":{"shape":"Ec2InstanceAttributes"},
586
+ "InstanceCollectionType":{"shape":"InstanceCollectionType"},
530
587
  "LogUri":{"shape":"String"},
531
588
  "RequestedAmiVersion":{"shape":"String"},
532
589
  "RunningAmiVersion":{"shape":"String"},
@@ -792,7 +849,9 @@
792
849
  "members":{
793
850
  "Ec2KeyName":{"shape":"String"},
794
851
  "Ec2SubnetId":{"shape":"String"},
852
+ "RequestedEc2SubnetIds":{"shape":"XmlStringMaxLen256List"},
795
853
  "Ec2AvailabilityZone":{"shape":"String"},
854
+ "RequestedEc2AvailabilityZones":{"shape":"XmlStringMaxLen256List"},
796
855
  "IamInstanceProfile":{"shape":"String"},
797
856
  "EmrManagedMasterSecurityGroup":{"shape":"String"},
798
857
  "EmrManagedSlaveSecurityGroup":{"shape":"String"},
@@ -845,9 +904,123 @@
845
904
  "PrivateIpAddress":{"shape":"String"},
846
905
  "Status":{"shape":"InstanceStatus"},
847
906
  "InstanceGroupId":{"shape":"String"},
907
+ "InstanceFleetId":{"shape":"InstanceFleetId"},
908
+ "Market":{"shape":"MarketType"},
909
+ "InstanceType":{"shape":"InstanceType"},
848
910
  "EbsVolumes":{"shape":"EbsVolumeList"}
849
911
  }
850
912
  },
913
+ "InstanceCollectionType":{
914
+ "type":"string",
915
+ "enum":[
916
+ "INSTANCE_FLEET",
917
+ "INSTANCE_GROUP"
918
+ ]
919
+ },
920
+ "InstanceFleet":{
921
+ "type":"structure",
922
+ "members":{
923
+ "Id":{"shape":"InstanceFleetId"},
924
+ "Name":{"shape":"XmlStringMaxLen256"},
925
+ "Status":{"shape":"InstanceFleetStatus"},
926
+ "InstanceFleetType":{"shape":"InstanceFleetType"},
927
+ "TargetOnDemandCapacity":{"shape":"WholeNumber"},
928
+ "TargetSpotCapacity":{"shape":"WholeNumber"},
929
+ "ProvisionedOnDemandCapacity":{"shape":"WholeNumber"},
930
+ "ProvisionedSpotCapacity":{"shape":"WholeNumber"},
931
+ "InstanceTypeSpecifications":{"shape":"InstanceTypeSpecificationList"},
932
+ "LaunchSpecifications":{"shape":"InstanceFleetProvisioningSpecifications"}
933
+ }
934
+ },
935
+ "InstanceFleetConfig":{
936
+ "type":"structure",
937
+ "required":["InstanceFleetType"],
938
+ "members":{
939
+ "Name":{"shape":"XmlStringMaxLen256"},
940
+ "InstanceFleetType":{"shape":"InstanceFleetType"},
941
+ "TargetOnDemandCapacity":{"shape":"WholeNumber"},
942
+ "TargetSpotCapacity":{"shape":"WholeNumber"},
943
+ "InstanceTypeConfigs":{"shape":"InstanceTypeConfigList"},
944
+ "LaunchSpecifications":{"shape":"InstanceFleetProvisioningSpecifications"}
945
+ }
946
+ },
947
+ "InstanceFleetConfigList":{
948
+ "type":"list",
949
+ "member":{"shape":"InstanceFleetConfig"}
950
+ },
951
+ "InstanceFleetId":{"type":"string"},
952
+ "InstanceFleetList":{
953
+ "type":"list",
954
+ "member":{"shape":"InstanceFleet"}
955
+ },
956
+ "InstanceFleetModifyConfig":{
957
+ "type":"structure",
958
+ "required":["InstanceFleetId"],
959
+ "members":{
960
+ "InstanceFleetId":{"shape":"InstanceFleetId"},
961
+ "TargetOnDemandCapacity":{"shape":"WholeNumber"},
962
+ "TargetSpotCapacity":{"shape":"WholeNumber"}
963
+ }
964
+ },
965
+ "InstanceFleetProvisioningSpecifications":{
966
+ "type":"structure",
967
+ "required":["SpotSpecification"],
968
+ "members":{
969
+ "SpotSpecification":{"shape":"SpotProvisioningSpecification"}
970
+ }
971
+ },
972
+ "InstanceFleetState":{
973
+ "type":"string",
974
+ "enum":[
975
+ "PROVISIONING",
976
+ "BOOTSTRAPPING",
977
+ "RUNNING",
978
+ "RESIZING",
979
+ "SUSPENDED",
980
+ "TERMINATING",
981
+ "TERMINATED"
982
+ ]
983
+ },
984
+ "InstanceFleetStateChangeReason":{
985
+ "type":"structure",
986
+ "members":{
987
+ "Code":{"shape":"InstanceFleetStateChangeReasonCode"},
988
+ "Message":{"shape":"String"}
989
+ }
990
+ },
991
+ "InstanceFleetStateChangeReasonCode":{
992
+ "type":"string",
993
+ "enum":[
994
+ "INTERNAL_ERROR",
995
+ "VALIDATION_ERROR",
996
+ "INSTANCE_FAILURE",
997
+ "CLUSTER_TERMINATED"
998
+ ]
999
+ },
1000
+ "InstanceFleetStatus":{
1001
+ "type":"structure",
1002
+ "members":{
1003
+ "State":{"shape":"InstanceFleetState"},
1004
+ "StateChangeReason":{"shape":"InstanceFleetStateChangeReason"},
1005
+ "Timeline":{"shape":"InstanceFleetTimeline"}
1006
+ }
1007
+ },
1008
+ "InstanceFleetTimeline":{
1009
+ "type":"structure",
1010
+ "members":{
1011
+ "CreationDateTime":{"shape":"Date"},
1012
+ "ReadyDateTime":{"shape":"Date"},
1013
+ "EndDateTime":{"shape":"Date"}
1014
+ }
1015
+ },
1016
+ "InstanceFleetType":{
1017
+ "type":"string",
1018
+ "enum":[
1019
+ "MASTER",
1020
+ "CORE",
1021
+ "TASK"
1022
+ ]
1023
+ },
851
1024
  "InstanceGroup":{
852
1025
  "type":"structure",
853
1026
  "members":{
@@ -1078,6 +1251,38 @@
1078
1251
  "min":1,
1079
1252
  "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
1080
1253
  },
1254
+ "InstanceTypeConfig":{
1255
+ "type":"structure",
1256
+ "required":["InstanceType"],
1257
+ "members":{
1258
+ "InstanceType":{"shape":"InstanceType"},
1259
+ "WeightedCapacity":{"shape":"WholeNumber"},
1260
+ "BidPrice":{"shape":"XmlStringMaxLen256"},
1261
+ "BidPriceAsPercentageOfOnDemandPrice":{"shape":"NonNegativeDouble"},
1262
+ "EbsConfiguration":{"shape":"EbsConfiguration"},
1263
+ "Configurations":{"shape":"ConfigurationList"}
1264
+ }
1265
+ },
1266
+ "InstanceTypeConfigList":{
1267
+ "type":"list",
1268
+ "member":{"shape":"InstanceTypeConfig"}
1269
+ },
1270
+ "InstanceTypeSpecification":{
1271
+ "type":"structure",
1272
+ "members":{
1273
+ "InstanceType":{"shape":"InstanceType"},
1274
+ "WeightedCapacity":{"shape":"WholeNumber"},
1275
+ "BidPrice":{"shape":"XmlStringMaxLen256"},
1276
+ "BidPriceAsPercentageOfOnDemandPrice":{"shape":"NonNegativeDouble"},
1277
+ "Configurations":{"shape":"ConfigurationList"},
1278
+ "EbsBlockDevices":{"shape":"EbsBlockDeviceList"},
1279
+ "EbsOptimized":{"shape":"BooleanObject"}
1280
+ }
1281
+ },
1282
+ "InstanceTypeSpecificationList":{
1283
+ "type":"list",
1284
+ "member":{"shape":"InstanceTypeSpecification"}
1285
+ },
1081
1286
  "Integer":{"type":"integer"},
1082
1287
  "InternalServerError":{
1083
1288
  "type":"structure",
@@ -1169,12 +1374,14 @@
1169
1374
  "SlaveInstanceType":{"shape":"InstanceType"},
1170
1375
  "InstanceCount":{"shape":"Integer"},
1171
1376
  "InstanceGroups":{"shape":"InstanceGroupConfigList"},
1377
+ "InstanceFleets":{"shape":"InstanceFleetConfigList"},
1172
1378
  "Ec2KeyName":{"shape":"XmlStringMaxLen256"},
1173
1379
  "Placement":{"shape":"PlacementType"},
1174
1380
  "KeepJobFlowAliveWhenNoSteps":{"shape":"Boolean"},
1175
1381
  "TerminationProtected":{"shape":"Boolean"},
1176
1382
  "HadoopVersion":{"shape":"XmlStringMaxLen256"},
1177
1383
  "Ec2SubnetId":{"shape":"XmlStringMaxLen256"},
1384
+ "Ec2SubnetIds":{"shape":"XmlStringMaxLen256List"},
1178
1385
  "EmrManagedMasterSecurityGroup":{"shape":"XmlStringMaxLen256"},
1179
1386
  "EmrManagedSlaveSecurityGroup":{"shape":"XmlStringMaxLen256"},
1180
1387
  "ServiceAccessSecurityGroup":{"shape":"XmlStringMaxLen256"},
@@ -1247,6 +1454,21 @@
1247
1454
  "Marker":{"shape":"Marker"}
1248
1455
  }
1249
1456
  },
1457
+ "ListInstanceFleetsInput":{
1458
+ "type":"structure",
1459
+ "required":["ClusterId"],
1460
+ "members":{
1461
+ "ClusterId":{"shape":"ClusterId"},
1462
+ "Marker":{"shape":"Marker"}
1463
+ }
1464
+ },
1465
+ "ListInstanceFleetsOutput":{
1466
+ "type":"structure",
1467
+ "members":{
1468
+ "InstanceFleets":{"shape":"InstanceFleetList"},
1469
+ "Marker":{"shape":"Marker"}
1470
+ }
1471
+ },
1250
1472
  "ListInstanceGroupsInput":{
1251
1473
  "type":"structure",
1252
1474
  "required":["ClusterId"],
@@ -1269,6 +1491,8 @@
1269
1491
  "ClusterId":{"shape":"ClusterId"},
1270
1492
  "InstanceGroupId":{"shape":"InstanceGroupId"},
1271
1493
  "InstanceGroupTypes":{"shape":"InstanceGroupTypeList"},
1494
+ "InstanceFleetId":{"shape":"InstanceFleetId"},
1495
+ "InstanceFleetType":{"shape":"InstanceFleetType"},
1272
1496
  "InstanceStates":{"shape":"InstanceStateList"},
1273
1497
  "Marker":{"shape":"Marker"}
1274
1498
  }
@@ -1329,6 +1553,17 @@
1329
1553
  "type":"list",
1330
1554
  "member":{"shape":"MetricDimension"}
1331
1555
  },
1556
+ "ModifyInstanceFleetInput":{
1557
+ "type":"structure",
1558
+ "required":[
1559
+ "ClusterId",
1560
+ "InstanceFleet"
1561
+ ],
1562
+ "members":{
1563
+ "ClusterId":{"shape":"ClusterId"},
1564
+ "InstanceFleet":{"shape":"InstanceFleetModifyConfig"}
1565
+ }
1566
+ },
1332
1567
  "ModifyInstanceGroupsInput":{
1333
1568
  "type":"structure",
1334
1569
  "members":{
@@ -1346,9 +1581,9 @@
1346
1581
  },
1347
1582
  "PlacementType":{
1348
1583
  "type":"structure",
1349
- "required":["AvailabilityZone"],
1350
1584
  "members":{
1351
- "AvailabilityZone":{"shape":"XmlString"}
1585
+ "AvailabilityZone":{"shape":"XmlString"},
1586
+ "AvailabilityZones":{"shape":"XmlStringMaxLen256List"}
1352
1587
  }
1353
1588
  },
1354
1589
  "PutAutoScalingPolicyInput":{
@@ -1551,6 +1786,25 @@
1551
1786
  "CoolDown":{"shape":"Integer"}
1552
1787
  }
1553
1788
  },
1789
+ "SpotProvisioningSpecification":{
1790
+ "type":"structure",
1791
+ "required":[
1792
+ "TimeoutDurationMinutes",
1793
+ "TimeoutAction"
1794
+ ],
1795
+ "members":{
1796
+ "TimeoutDurationMinutes":{"shape":"WholeNumber"},
1797
+ "TimeoutAction":{"shape":"SpotProvisioningTimeoutAction"},
1798
+ "BlockDurationMinutes":{"shape":"WholeNumber"}
1799
+ }
1800
+ },
1801
+ "SpotProvisioningTimeoutAction":{
1802
+ "type":"string",
1803
+ "enum":[
1804
+ "SWITCH_TO_ON_DEMAND",
1805
+ "TERMINATE_CLUSTER"
1806
+ ]
1807
+ },
1554
1808
  "Statistic":{
1555
1809
  "type":"string",
1556
1810
  "enum":[
@@ -1774,6 +2028,10 @@
1774
2028
  "SizeInGB":{"shape":"Integer"}
1775
2029
  }
1776
2030
  },
2031
+ "WholeNumber":{
2032
+ "type":"integer",
2033
+ "min":0
2034
+ },
1777
2035
  "XmlString":{
1778
2036
  "type":"string",
1779
2037
  "max":10280,
@@ -1789,6 +2047,10 @@
1789
2047
  "max":256,
1790
2048
  "min":0,
1791
2049
  "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
2050
+ },
2051
+ "XmlStringMaxLen256List":{
2052
+ "type":"list",
2053
+ "member":{"shape":"XmlStringMaxLen256"}
1792
2054
  }
1793
2055
  }
1794
2056
  }
@@ -13,6 +13,11 @@
13
13
  "output_token": "Marker",
14
14
  "result_key": "Clusters"
15
15
  },
16
+ "ListInstanceFleets": {
17
+ "input_token": "Marker",
18
+ "output_token": "Marker",
19
+ "result_key": "InstanceFleets"
20
+ },
16
21
  "ListInstanceGroups": {
17
22
  "input_token": "Marker",
18
23
  "output_token": "Marker",
@@ -29,4 +34,4 @@
29
34
  "result_key": "Steps"
30
35
  }
31
36
  }
32
- }
37
+ }
@@ -62,6 +62,25 @@
62
62
  "expected": "CANCELLED"
63
63
  }
64
64
  ]
65
+ },
66
+ "ClusterTerminated": {
67
+ "delay": 30,
68
+ "operation": "DescribeCluster",
69
+ "maxAttempts": 60,
70
+ "acceptors": [
71
+ {
72
+ "state": "success",
73
+ "matcher": "path",
74
+ "argument": "Cluster.Status.State",
75
+ "expected": "TERMINATED"
76
+ },
77
+ {
78
+ "state": "failure",
79
+ "matcher": "path",
80
+ "argument": "Cluster.Status.State",
81
+ "expected": "TERMINATED_WITH_ERRORS"
82
+ }
83
+ ]
65
84
  }
66
85
  }
67
86
  }
@@ -1309,6 +1309,7 @@
1309
1309
  "states": {
1310
1310
  "endpoints": {
1311
1311
  "ap-northeast-1": {},
1312
+ "eu-central-1": {},
1312
1313
  "eu-west-1": {},
1313
1314
  "us-east-1": {},
1314
1315
  "us-east-2": {},
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.8.4'
2
+ VERSION = '2.8.5'
3
3
  end
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.8.4
4
+ version: 2.8.5
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: 2017-03-09 00:00:00.000000000 Z
11
+ date: 2017-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath