aws-sdk-core 2.6.24 → 2.6.25

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: 288e127ef0bc8b17b9a1d85e08764363d9690770
4
- data.tar.gz: a6fdc5256431d618002ad1571ae30e287857ce94
3
+ metadata.gz: bc92e137314ebab63db3ee1f08ce7633f48c4ef4
4
+ data.tar.gz: 2ee1887ffc31f7da3c552182efb5a0bc7a2424fd
5
5
  SHA512:
6
- metadata.gz: db7d7c61b46066e207a1257f746f6ebb1dfa143b4c646673bf2072c3f62afe4702a4519c451f0124c7650296a6eef54af252a832dcb9cb1d2a9ff350d3d513b7
7
- data.tar.gz: c247702c4d5849646254f120a8fe9ef54650016fb8f3a96f3d8139bbe473ab77dda0bd221cc90abfff5da517a54742eb64794534f972cdacf51131be3c6cbde1
6
+ metadata.gz: 59d1bae7ef8cd5c456b6c4a25adf3e7177ee1d9a107b69ad67ba79905f815d02d7291288111e94f803d8a15f2ef5ab9560465d03014ac67a97303feeeb9f0591
7
+ data.tar.gz: cb3047e185def1e17044a27b2e9791f8393b7ac1c0298925e142f13e108cfeee06d1f00fd742a7cabee9052a4ef852d0b1bf3a573508a5461a470aa93be4b35b
@@ -49,6 +49,19 @@
49
49
  {"shape":"InvalidRequestException"}
50
50
  ]
51
51
  },
52
+ "CancelSteps":{
53
+ "name":"CancelSteps",
54
+ "http":{
55
+ "method":"POST",
56
+ "requestUri":"/"
57
+ },
58
+ "input":{"shape":"CancelStepsInput"},
59
+ "output":{"shape":"CancelStepsOutput"},
60
+ "errors":[
61
+ {"shape":"InternalServerError"},
62
+ {"shape":"InvalidRequestException"}
63
+ ]
64
+ },
52
65
  "CreateSecurityConfiguration":{
53
66
  "name":"CreateSecurityConfiguration",
54
67
  "http":{
@@ -216,6 +229,24 @@
216
229
  {"shape":"InternalServerError"}
217
230
  ]
218
231
  },
232
+ "PutAutoScalingPolicy":{
233
+ "name":"PutAutoScalingPolicy",
234
+ "http":{
235
+ "method":"POST",
236
+ "requestUri":"/"
237
+ },
238
+ "input":{"shape":"PutAutoScalingPolicyInput"},
239
+ "output":{"shape":"PutAutoScalingPolicyOutput"}
240
+ },
241
+ "RemoveAutoScalingPolicy":{
242
+ "name":"RemoveAutoScalingPolicy",
243
+ "http":{
244
+ "method":"POST",
245
+ "requestUri":"/"
246
+ },
247
+ "input":{"shape":"RemoveAutoScalingPolicyInput"},
248
+ "output":{"shape":"RemoveAutoScalingPolicyOutput"}
249
+ },
219
250
  "RemoveTags":{
220
251
  "name":"RemoveTags",
221
252
  "http":{
@@ -336,6 +367,14 @@
336
367
  "members":{
337
368
  }
338
369
  },
370
+ "AdjustmentType":{
371
+ "type":"string",
372
+ "enum":[
373
+ "CHANGE_IN_CAPACITY",
374
+ "PERCENT_CHANGE_IN_CAPACITY",
375
+ "EXACT_CAPACITY"
376
+ ]
377
+ },
339
378
  "Application":{
340
379
  "type":"structure",
341
380
  "members":{
@@ -349,6 +388,58 @@
349
388
  "type":"list",
350
389
  "member":{"shape":"Application"}
351
390
  },
391
+ "AutoScalingPolicy":{
392
+ "type":"structure",
393
+ "required":[
394
+ "Constraints",
395
+ "Rules"
396
+ ],
397
+ "members":{
398
+ "Constraints":{"shape":"ScalingConstraints"},
399
+ "Rules":{"shape":"ScalingRuleList"}
400
+ }
401
+ },
402
+ "AutoScalingPolicyDescription":{
403
+ "type":"structure",
404
+ "members":{
405
+ "Status":{"shape":"AutoScalingPolicyStatus"},
406
+ "Constraints":{"shape":"ScalingConstraints"},
407
+ "Rules":{"shape":"ScalingRuleList"}
408
+ }
409
+ },
410
+ "AutoScalingPolicyState":{
411
+ "type":"string",
412
+ "enum":[
413
+ "PENDING",
414
+ "ATTACHING",
415
+ "ATTACHED",
416
+ "DETACHING",
417
+ "DETACHED",
418
+ "FAILED"
419
+ ]
420
+ },
421
+ "AutoScalingPolicyStateChangeReason":{
422
+ "type":"structure",
423
+ "members":{
424
+ "Code":{"shape":"AutoScalingPolicyStateChangeReasonCode"},
425
+ "Message":{"shape":"String"}
426
+ }
427
+ },
428
+ "AutoScalingPolicyStateChangeReasonCode":{
429
+ "type":"string",
430
+ "enum":[
431
+ "USER_REQUEST",
432
+ "PROVISION_FAILURE",
433
+ "CLEANUP_FAILURE"
434
+ ]
435
+ },
436
+ "AutoScalingPolicyStatus":{
437
+ "type":"structure",
438
+ "members":{
439
+ "State":{"shape":"AutoScalingPolicyState"},
440
+ "StateChangeReason":{"shape":"AutoScalingPolicyStateChangeReason"}
441
+ }
442
+ },
352
443
  "Boolean":{"type":"boolean"},
353
444
  "BooleanObject":{"type":"boolean"},
354
445
  "BootstrapActionConfig":{
@@ -376,6 +467,58 @@
376
467
  "type":"list",
377
468
  "member":{"shape":"BootstrapActionDetail"}
378
469
  },
470
+ "CancelStepsInfo":{
471
+ "type":"structure",
472
+ "members":{
473
+ "StepId":{"shape":"StepId"},
474
+ "Status":{"shape":"CancelStepsRequestStatus"},
475
+ "Reason":{"shape":"String"}
476
+ }
477
+ },
478
+ "CancelStepsInfoList":{
479
+ "type":"list",
480
+ "member":{"shape":"CancelStepsInfo"}
481
+ },
482
+ "CancelStepsInput":{
483
+ "type":"structure",
484
+ "members":{
485
+ "ClusterId":{"shape":"XmlStringMaxLen256"},
486
+ "StepIds":{"shape":"StepIdsList"}
487
+ }
488
+ },
489
+ "CancelStepsOutput":{
490
+ "type":"structure",
491
+ "members":{
492
+ "CancelStepsInfoList":{"shape":"CancelStepsInfoList"}
493
+ }
494
+ },
495
+ "CancelStepsRequestStatus":{
496
+ "type":"string",
497
+ "enum":[
498
+ "SUBMITTED",
499
+ "FAILED"
500
+ ]
501
+ },
502
+ "CloudWatchAlarmDefinition":{
503
+ "type":"structure",
504
+ "required":[
505
+ "ComparisonOperator",
506
+ "MetricName",
507
+ "Period",
508
+ "Threshold"
509
+ ],
510
+ "members":{
511
+ "ComparisonOperator":{"shape":"ComparisonOperator"},
512
+ "EvaluationPeriods":{"shape":"Integer"},
513
+ "MetricName":{"shape":"String"},
514
+ "Namespace":{"shape":"String"},
515
+ "Period":{"shape":"Integer"},
516
+ "Statistic":{"shape":"Statistic"},
517
+ "Threshold":{"shape":"NonNegativeDouble"},
518
+ "Unit":{"shape":"Unit"},
519
+ "Dimensions":{"shape":"MetricDimensionList"}
520
+ }
521
+ },
379
522
  "Cluster":{
380
523
  "type":"structure",
381
524
  "members":{
@@ -396,7 +539,9 @@
396
539
  "NormalizedInstanceHours":{"shape":"Integer"},
397
540
  "MasterPublicDnsName":{"shape":"String"},
398
541
  "Configurations":{"shape":"ConfigurationList"},
399
- "SecurityConfiguration":{"shape":"XmlString"}
542
+ "SecurityConfiguration":{"shape":"XmlString"},
543
+ "AutoScalingRole":{"shape":"XmlString"},
544
+ "ScaleDownBehavior":{"shape":"ScaleDownBehavior"}
400
545
  }
401
546
  },
402
547
  "ClusterId":{"type":"string"},
@@ -476,6 +621,15 @@
476
621
  "type":"list",
477
622
  "member":{"shape":"Command"}
478
623
  },
624
+ "ComparisonOperator":{
625
+ "type":"string",
626
+ "enum":[
627
+ "GREATER_THAN_OR_EQUAL",
628
+ "GREATER_THAN",
629
+ "LESS_THAN",
630
+ "LESS_THAN_OR_EQUAL"
631
+ ]
632
+ },
479
633
  "Configuration":{
480
634
  "type":"structure",
481
635
  "members":{
@@ -708,7 +862,8 @@
708
862
  "Configurations":{"shape":"ConfigurationList"},
709
863
  "EbsBlockDevices":{"shape":"EbsBlockDeviceList"},
710
864
  "EbsOptimized":{"shape":"BooleanObject"},
711
- "ShrinkPolicy":{"shape":"ShrinkPolicy"}
865
+ "ShrinkPolicy":{"shape":"ShrinkPolicy"},
866
+ "AutoScalingPolicy":{"shape":"AutoScalingPolicyDescription"}
712
867
  }
713
868
  },
714
869
  "InstanceGroupConfig":{
@@ -726,7 +881,8 @@
726
881
  "InstanceType":{"shape":"InstanceType"},
727
882
  "InstanceCount":{"shape":"Integer"},
728
883
  "Configurations":{"shape":"ConfigurationList"},
729
- "EbsConfiguration":{"shape":"EbsConfiguration"}
884
+ "EbsConfiguration":{"shape":"EbsConfiguration"},
885
+ "AutoScalingPolicy":{"shape":"AutoScalingPolicy"}
730
886
  }
731
887
  },
732
888
  "InstanceGroupConfigList":{
@@ -964,7 +1120,9 @@
964
1120
  "SupportedProducts":{"shape":"SupportedProductsList"},
965
1121
  "VisibleToAllUsers":{"shape":"Boolean"},
966
1122
  "JobFlowRole":{"shape":"XmlString"},
967
- "ServiceRole":{"shape":"XmlString"}
1123
+ "ServiceRole":{"shape":"XmlString"},
1124
+ "AutoScalingRole":{"shape":"XmlString"},
1125
+ "ScaleDownBehavior":{"shape":"ScaleDownBehavior"}
968
1126
  }
969
1127
  },
970
1128
  "JobFlowDetailList":{
@@ -1159,9 +1317,21 @@
1159
1317
  "SPOT"
1160
1318
  ]
1161
1319
  },
1320
+ "MetricDimension":{
1321
+ "type":"structure",
1322
+ "members":{
1323
+ "Key":{"shape":"String"},
1324
+ "Value":{"shape":"String"}
1325
+ }
1326
+ },
1327
+ "MetricDimensionList":{
1328
+ "type":"list",
1329
+ "member":{"shape":"MetricDimension"}
1330
+ },
1162
1331
  "ModifyInstanceGroupsInput":{
1163
1332
  "type":"structure",
1164
1333
  "members":{
1334
+ "ClusterId":{"shape":"ClusterId"},
1165
1335
  "InstanceGroups":{"shape":"InstanceGroupModifyConfigList"}
1166
1336
  }
1167
1337
  },
@@ -1169,6 +1339,10 @@
1169
1339
  "type":"list",
1170
1340
  "member":{"shape":"SupportedProductConfig"}
1171
1341
  },
1342
+ "NonNegativeDouble":{
1343
+ "type":"double",
1344
+ "min":0.0
1345
+ },
1172
1346
  "PlacementType":{
1173
1347
  "type":"structure",
1174
1348
  "required":["AvailabilityZone"],
@@ -1176,6 +1350,43 @@
1176
1350
  "AvailabilityZone":{"shape":"XmlString"}
1177
1351
  }
1178
1352
  },
1353
+ "PutAutoScalingPolicyInput":{
1354
+ "type":"structure",
1355
+ "required":[
1356
+ "ClusterId",
1357
+ "InstanceGroupId",
1358
+ "AutoScalingPolicy"
1359
+ ],
1360
+ "members":{
1361
+ "ClusterId":{"shape":"ClusterId"},
1362
+ "InstanceGroupId":{"shape":"InstanceGroupId"},
1363
+ "AutoScalingPolicy":{"shape":"AutoScalingPolicy"}
1364
+ }
1365
+ },
1366
+ "PutAutoScalingPolicyOutput":{
1367
+ "type":"structure",
1368
+ "members":{
1369
+ "ClusterId":{"shape":"ClusterId"},
1370
+ "InstanceGroupId":{"shape":"InstanceGroupId"},
1371
+ "AutoScalingPolicy":{"shape":"AutoScalingPolicyDescription"}
1372
+ }
1373
+ },
1374
+ "RemoveAutoScalingPolicyInput":{
1375
+ "type":"structure",
1376
+ "required":[
1377
+ "ClusterId",
1378
+ "InstanceGroupId"
1379
+ ],
1380
+ "members":{
1381
+ "ClusterId":{"shape":"ClusterId"},
1382
+ "InstanceGroupId":{"shape":"InstanceGroupId"}
1383
+ }
1384
+ },
1385
+ "RemoveAutoScalingPolicyOutput":{
1386
+ "type":"structure",
1387
+ "members":{
1388
+ }
1389
+ },
1179
1390
  "RemoveTagsInput":{
1180
1391
  "type":"structure",
1181
1392
  "required":[
@@ -1216,7 +1427,9 @@
1216
1427
  "JobFlowRole":{"shape":"XmlString"},
1217
1428
  "ServiceRole":{"shape":"XmlString"},
1218
1429
  "Tags":{"shape":"TagList"},
1219
- "SecurityConfiguration":{"shape":"XmlString"}
1430
+ "SecurityConfiguration":{"shape":"XmlString"},
1431
+ "AutoScalingRole":{"shape":"XmlString"},
1432
+ "ScaleDownBehavior":{"shape":"ScaleDownBehavior"}
1220
1433
  }
1221
1434
  },
1222
1435
  "RunJobFlowOutput":{
@@ -1225,6 +1438,57 @@
1225
1438
  "JobFlowId":{"shape":"XmlStringMaxLen256"}
1226
1439
  }
1227
1440
  },
1441
+ "ScaleDownBehavior":{
1442
+ "type":"string",
1443
+ "enum":[
1444
+ "TERMINATE_AT_INSTANCE_HOUR",
1445
+ "TERMINATE_AT_TASK_COMPLETION"
1446
+ ]
1447
+ },
1448
+ "ScalingAction":{
1449
+ "type":"structure",
1450
+ "required":["SimpleScalingPolicyConfiguration"],
1451
+ "members":{
1452
+ "Market":{"shape":"MarketType"},
1453
+ "SimpleScalingPolicyConfiguration":{"shape":"SimpleScalingPolicyConfiguration"}
1454
+ }
1455
+ },
1456
+ "ScalingConstraints":{
1457
+ "type":"structure",
1458
+ "required":[
1459
+ "MinCapacity",
1460
+ "MaxCapacity"
1461
+ ],
1462
+ "members":{
1463
+ "MinCapacity":{"shape":"Integer"},
1464
+ "MaxCapacity":{"shape":"Integer"}
1465
+ }
1466
+ },
1467
+ "ScalingRule":{
1468
+ "type":"structure",
1469
+ "required":[
1470
+ "Name",
1471
+ "Action",
1472
+ "Trigger"
1473
+ ],
1474
+ "members":{
1475
+ "Name":{"shape":"String"},
1476
+ "Description":{"shape":"String"},
1477
+ "Action":{"shape":"ScalingAction"},
1478
+ "Trigger":{"shape":"ScalingTrigger"}
1479
+ }
1480
+ },
1481
+ "ScalingRuleList":{
1482
+ "type":"list",
1483
+ "member":{"shape":"ScalingRule"}
1484
+ },
1485
+ "ScalingTrigger":{
1486
+ "type":"structure",
1487
+ "required":["CloudWatchAlarmDefinition"],
1488
+ "members":{
1489
+ "CloudWatchAlarmDefinition":{"shape":"CloudWatchAlarmDefinition"}
1490
+ }
1491
+ },
1228
1492
  "ScriptBootstrapActionConfig":{
1229
1493
  "type":"structure",
1230
1494
  "required":["Path"],
@@ -1277,6 +1541,25 @@
1277
1541
  "InstanceResizePolicy":{"shape":"InstanceResizePolicy"}
1278
1542
  }
1279
1543
  },
1544
+ "SimpleScalingPolicyConfiguration":{
1545
+ "type":"structure",
1546
+ "required":["ScalingAdjustment"],
1547
+ "members":{
1548
+ "AdjustmentType":{"shape":"AdjustmentType"},
1549
+ "ScalingAdjustment":{"shape":"Integer"},
1550
+ "CoolDown":{"shape":"Integer"}
1551
+ }
1552
+ },
1553
+ "Statistic":{
1554
+ "type":"string",
1555
+ "enum":[
1556
+ "SAMPLE_COUNT",
1557
+ "AVERAGE",
1558
+ "SUM",
1559
+ "MINIMUM",
1560
+ "MAXIMUM"
1561
+ ]
1562
+ },
1280
1563
  "Step":{
1281
1564
  "type":"structure",
1282
1565
  "members":{
@@ -1353,6 +1636,7 @@
1353
1636
  "type":"string",
1354
1637
  "enum":[
1355
1638
  "PENDING",
1639
+ "CANCEL_PENDING",
1356
1640
  "RUNNING",
1357
1641
  "COMPLETED",
1358
1642
  "CANCELLED",
@@ -1445,6 +1729,38 @@
1445
1729
  "JobFlowIds":{"shape":"XmlStringList"}
1446
1730
  }
1447
1731
  },
1732
+ "Unit":{
1733
+ "type":"string",
1734
+ "enum":[
1735
+ "NONE",
1736
+ "SECONDS",
1737
+ "MICRO_SECONDS",
1738
+ "MILLI_SECONDS",
1739
+ "BYTES",
1740
+ "KILO_BYTES",
1741
+ "MEGA_BYTES",
1742
+ "GIGA_BYTES",
1743
+ "TERA_BYTES",
1744
+ "BITS",
1745
+ "KILO_BITS",
1746
+ "MEGA_BITS",
1747
+ "GIGA_BITS",
1748
+ "TERA_BITS",
1749
+ "PERCENT",
1750
+ "COUNT",
1751
+ "BYTES_PER_SECOND",
1752
+ "KILO_BYTES_PER_SECOND",
1753
+ "MEGA_BYTES_PER_SECOND",
1754
+ "GIGA_BYTES_PER_SECOND",
1755
+ "TERA_BYTES_PER_SECOND",
1756
+ "BITS_PER_SECOND",
1757
+ "KILO_BITS_PER_SECOND",
1758
+ "MEGA_BITS_PER_SECOND",
1759
+ "GIGA_BITS_PER_SECOND",
1760
+ "TERA_BITS_PER_SECOND",
1761
+ "COUNT_PER_SECOND"
1762
+ ]
1763
+ },
1448
1764
  "VolumeSpecification":{
1449
1765
  "type":"structure",
1450
1766
  "required":[
@@ -239,7 +239,8 @@
239
239
  {"shape":"ResourceNotFoundException"},
240
240
  {"shape":"AccessDeniedException"},
241
241
  {"shape":"InternalServiceException"}
242
- ]
242
+ ],
243
+ "deprecated":true
243
244
  },
244
245
  "UpdatePipeline":{
245
246
  "name":"UpdatePipeline",
@@ -458,8 +459,14 @@
458
459
  "Captions":{
459
460
  "type":"structure",
460
461
  "members":{
461
- "MergePolicy":{"shape":"CaptionMergePolicy"},
462
- "CaptionSources":{"shape":"CaptionSources"},
462
+ "MergePolicy":{
463
+ "shape":"CaptionMergePolicy",
464
+ "deprecated":true
465
+ },
466
+ "CaptionSources":{
467
+ "shape":"CaptionSources",
468
+ "deprecated":true
469
+ },
463
470
  "CaptionFormats":{"shape":"CaptionFormats"}
464
471
  }
465
472
  },
@@ -467,7 +474,8 @@
467
474
  "type":"structure",
468
475
  "members":{
469
476
  "TimeSpan":{"shape":"TimeSpan"}
470
- }
477
+ },
478
+ "deprecated":true
471
479
  },
472
480
  "CodecOption":{
473
481
  "type":"string",
@@ -482,7 +490,8 @@
482
490
  },
483
491
  "Composition":{
484
492
  "type":"list",
485
- "member":{"shape":"Clip"}
493
+ "member":{"shape":"Clip"},
494
+ "deprecated":true
486
495
  },
487
496
  "CreateJobOutput":{
488
497
  "type":"structure",
@@ -495,7 +504,10 @@
495
504
  "SegmentDuration":{"shape":"FloatString"},
496
505
  "Watermarks":{"shape":"JobWatermarks"},
497
506
  "AlbumArt":{"shape":"JobAlbumArt"},
498
- "Composition":{"shape":"Composition"},
507
+ "Composition":{
508
+ "shape":"Composition",
509
+ "deprecated":true
510
+ },
499
511
  "Captions":{"shape":"Captions"},
500
512
  "Encryption":{"shape":"Encryption"}
501
513
  }
@@ -522,13 +534,11 @@
522
534
  },
523
535
  "CreateJobRequest":{
524
536
  "type":"structure",
525
- "required":[
526
- "PipelineId",
527
- "Input"
528
- ],
537
+ "required":["PipelineId"],
529
538
  "members":{
530
539
  "PipelineId":{"shape":"Id"},
531
540
  "Input":{"shape":"JobInput"},
541
+ "Inputs":{"shape":"JobInputs"},
532
542
  "Output":{"shape":"CreateJobOutput"},
533
543
  "Outputs":{"shape":"CreateJobOutputs"},
534
544
  "OutputKeyPrefix":{"shape":"Key"},
@@ -717,6 +727,13 @@
717
727
  "error":{"httpStatusCode":400},
718
728
  "exception":true
719
729
  },
730
+ "InputCaptions":{
731
+ "type":"structure",
732
+ "members":{
733
+ "MergePolicy":{"shape":"CaptionMergePolicy"},
734
+ "CaptionSources":{"shape":"CaptionSources"}
735
+ }
736
+ },
720
737
  "Interlaced":{
721
738
  "type":"string",
722
739
  "pattern":"(^auto$)|(^true$)|(^false$)"
@@ -735,6 +752,7 @@
735
752
  "Arn":{"shape":"String"},
736
753
  "PipelineId":{"shape":"Id"},
737
754
  "Input":{"shape":"JobInput"},
755
+ "Inputs":{"shape":"JobInputs"},
738
756
  "Output":{"shape":"JobOutput"},
739
757
  "Outputs":{"shape":"JobOutputs"},
740
758
  "OutputKeyPrefix":{"shape":"Key"},
@@ -765,9 +783,16 @@
765
783
  "Interlaced":{"shape":"Interlaced"},
766
784
  "Container":{"shape":"JobContainer"},
767
785
  "Encryption":{"shape":"Encryption"},
786
+ "TimeSpan":{"shape":"TimeSpan"},
787
+ "InputCaptions":{"shape":"InputCaptions"},
768
788
  "DetectedProperties":{"shape":"DetectedProperties"}
769
789
  }
770
790
  },
791
+ "JobInputs":{
792
+ "type":"list",
793
+ "member":{"shape":"JobInput"},
794
+ "max":10000
795
+ },
771
796
  "JobOutput":{
772
797
  "type":"structure",
773
798
  "members":{
@@ -788,7 +813,10 @@
788
813
  "DurationMillis":{"shape":"NullableLong"},
789
814
  "Watermarks":{"shape":"JobWatermarks"},
790
815
  "AlbumArt":{"shape":"JobAlbumArt"},
791
- "Composition":{"shape":"Composition"},
816
+ "Composition":{
817
+ "shape":"Composition",
818
+ "deprecated":true
819
+ },
792
820
  "Captions":{"shape":"Captions"},
793
821
  "Encryption":{"shape":"Encryption"},
794
822
  "AppliedColorSpaceConversion":{"shape":"String"}
@@ -1253,14 +1281,16 @@
1253
1281
  "InputBucket":{"shape":"BucketName"},
1254
1282
  "OutputBucket":{"shape":"BucketName"},
1255
1283
  "Topics":{"shape":"SnsTopics"}
1256
- }
1284
+ },
1285
+ "deprecated":true
1257
1286
  },
1258
1287
  "TestRoleResponse":{
1259
1288
  "type":"structure",
1260
1289
  "members":{
1261
1290
  "Success":{"shape":"Success"},
1262
1291
  "Messages":{"shape":"ExceptionMessages"}
1263
- }
1292
+ },
1293
+ "deprecated":true
1264
1294
  },
1265
1295
  "ThumbnailPattern":{
1266
1296
  "type":"string",
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -398,6 +398,21 @@
398
398
  {"shape":"InvalidRequestException"}
399
399
  ]
400
400
  },
401
+ "GetInstanceAccess":{
402
+ "name":"GetInstanceAccess",
403
+ "http":{
404
+ "method":"POST",
405
+ "requestUri":"/"
406
+ },
407
+ "input":{"shape":"GetInstanceAccessInput"},
408
+ "output":{"shape":"GetInstanceAccessOutput"},
409
+ "errors":[
410
+ {"shape":"UnauthorizedException"},
411
+ {"shape":"InvalidRequestException"},
412
+ {"shape":"NotFoundException"},
413
+ {"shape":"InternalServiceException"}
414
+ ]
415
+ },
401
416
  "ListAliases":{
402
417
  "name":"ListAliases",
403
418
  "http":{
@@ -1150,7 +1165,14 @@
1150
1165
  "FLEET_VALIDATION_TIMED_OUT",
1151
1166
  "FLEET_ACTIVATION_FAILED",
1152
1167
  "FLEET_ACTIVATION_FAILED_NO_INSTANCES",
1153
- "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED"
1168
+ "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED",
1169
+ "SERVER_PROCESS_INVALID_PATH",
1170
+ "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT",
1171
+ "SERVER_PROCESS_PROCESS_READY_TIMEOUT",
1172
+ "SERVER_PROCESS_CRASHED",
1173
+ "SERVER_PROCESS_TERMINATED_UNHEALTHY",
1174
+ "SERVER_PROCESS_FORCE_TERMINATED",
1175
+ "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT"
1154
1176
  ]
1155
1177
  },
1156
1178
  "EventList":{
@@ -1323,6 +1345,23 @@
1323
1345
  "PreSignedUrl":{"shape":"NonZeroAndMaxString"}
1324
1346
  }
1325
1347
  },
1348
+ "GetInstanceAccessInput":{
1349
+ "type":"structure",
1350
+ "required":[
1351
+ "FleetId",
1352
+ "InstanceId"
1353
+ ],
1354
+ "members":{
1355
+ "FleetId":{"shape":"FleetId"},
1356
+ "InstanceId":{"shape":"InstanceId"}
1357
+ }
1358
+ },
1359
+ "GetInstanceAccessOutput":{
1360
+ "type":"structure",
1361
+ "members":{
1362
+ "InstanceAccess":{"shape":"InstanceAccess"}
1363
+ }
1364
+ },
1326
1365
  "IdStringModel":{
1327
1366
  "type":"string",
1328
1367
  "max":48,
@@ -1348,6 +1387,24 @@
1348
1387
  "CreationTime":{"shape":"Timestamp"}
1349
1388
  }
1350
1389
  },
1390
+ "InstanceAccess":{
1391
+ "type":"structure",
1392
+ "members":{
1393
+ "FleetId":{"shape":"FleetId"},
1394
+ "InstanceId":{"shape":"InstanceId"},
1395
+ "IpAddress":{"shape":"IpAddress"},
1396
+ "OperatingSystem":{"shape":"OperatingSystem"},
1397
+ "Credentials":{"shape":"InstanceCredentials"}
1398
+ }
1399
+ },
1400
+ "InstanceCredentials":{
1401
+ "type":"structure",
1402
+ "members":{
1403
+ "UserName":{"shape":"NonEmptyString"},
1404
+ "Secret":{"shape":"NonEmptyString"}
1405
+ },
1406
+ "sensitive":true
1407
+ },
1351
1408
  "InstanceId":{
1352
1409
  "type":"string",
1353
1410
  "pattern":"[a-zA-Z0-9\\.-]+"
@@ -227,7 +227,11 @@
227
227
  {"shape":"EC2AccessDeniedException"},
228
228
  {"shape":"InvalidSubnetIDException"},
229
229
  {"shape":"InvalidSecurityGroupIDException"},
230
- {"shape":"InvalidZipFileException"}
230
+ {"shape":"InvalidZipFileException"},
231
+ {"shape":"KMSDisabledException"},
232
+ {"shape":"KMSInvalidStateException"},
233
+ {"shape":"KMSAccessDeniedException"},
234
+ {"shape":"KMSNotFoundException"}
231
235
  ]
232
236
  },
233
237
  "InvokeAsync":{
@@ -540,7 +544,9 @@
540
544
  "Timeout":{"shape":"Timeout"},
541
545
  "MemorySize":{"shape":"MemorySize"},
542
546
  "Publish":{"shape":"Boolean"},
543
- "VpcConfig":{"shape":"VpcConfig"}
547
+ "VpcConfig":{"shape":"VpcConfig"},
548
+ "Environment":{"shape":"Environment"},
549
+ "KMSKeyArn":{"shape":"KMSKeyArn"}
544
550
  }
545
551
  },
546
552
  "Date":{"type":"timestamp"},
@@ -633,6 +639,39 @@
633
639
  "exception":true
634
640
  },
635
641
  "Enabled":{"type":"boolean"},
642
+ "Environment":{
643
+ "type":"structure",
644
+ "members":{
645
+ "Variables":{"shape":"EnvironmentVariables"}
646
+ }
647
+ },
648
+ "EnvironmentError":{
649
+ "type":"structure",
650
+ "members":{
651
+ "ErrorCode":{"shape":"String"},
652
+ "Message":{"shape":"String"}
653
+ }
654
+ },
655
+ "EnvironmentResponse":{
656
+ "type":"structure",
657
+ "members":{
658
+ "Variables":{"shape":"EnvironmentVariables"},
659
+ "Error":{"shape":"EnvironmentError"}
660
+ }
661
+ },
662
+ "EnvironmentVariableName":{
663
+ "type":"string",
664
+ "pattern":"[a-zA-Z]([a-zA-Z0-9_])+"
665
+ },
666
+ "EnvironmentVariableValue":{
667
+ "type":"string",
668
+ "pattern":"[^,]*"
669
+ },
670
+ "EnvironmentVariables":{
671
+ "type":"map",
672
+ "key":{"shape":"EnvironmentVariableName"},
673
+ "value":{"shape":"EnvironmentVariableValue"}
674
+ },
636
675
  "EventSourceMappingConfiguration":{
637
676
  "type":"structure",
638
677
  "members":{
@@ -698,7 +737,9 @@
698
737
  "LastModified":{"shape":"Timestamp"},
699
738
  "CodeSha256":{"shape":"String"},
700
739
  "Version":{"shape":"Version"},
701
- "VpcConfig":{"shape":"VpcConfigResponse"}
740
+ "VpcConfig":{"shape":"VpcConfigResponse"},
741
+ "Environment":{"shape":"EnvironmentResponse"},
742
+ "KMSKeyArn":{"shape":"KMSKeyArn"}
702
743
  }
703
744
  },
704
745
  "FunctionList":{
@@ -943,6 +984,46 @@
943
984
  },
944
985
  "deprecated":true
945
986
  },
987
+ "KMSAccessDeniedException":{
988
+ "type":"structure",
989
+ "members":{
990
+ "Type":{"shape":"String"},
991
+ "Message":{"shape":"String"}
992
+ },
993
+ "error":{"httpStatusCode":502},
994
+ "exception":true
995
+ },
996
+ "KMSDisabledException":{
997
+ "type":"structure",
998
+ "members":{
999
+ "Type":{"shape":"String"},
1000
+ "Message":{"shape":"String"}
1001
+ },
1002
+ "error":{"httpStatusCode":502},
1003
+ "exception":true
1004
+ },
1005
+ "KMSInvalidStateException":{
1006
+ "type":"structure",
1007
+ "members":{
1008
+ "Type":{"shape":"String"},
1009
+ "Message":{"shape":"String"}
1010
+ },
1011
+ "error":{"httpStatusCode":502},
1012
+ "exception":true
1013
+ },
1014
+ "KMSKeyArn":{
1015
+ "type":"string",
1016
+ "pattern":"(arn:aws:[a-z0-9-.]+:.*)|()"
1017
+ },
1018
+ "KMSNotFoundException":{
1019
+ "type":"structure",
1020
+ "members":{
1021
+ "Type":{"shape":"String"},
1022
+ "Message":{"shape":"String"}
1023
+ },
1024
+ "error":{"httpStatusCode":502},
1025
+ "exception":true
1026
+ },
946
1027
  "ListAliasesRequest":{
947
1028
  "type":"structure",
948
1029
  "required":["FunctionName"],
@@ -1332,6 +1413,8 @@
1332
1413
  "Timeout":{"shape":"Timeout"},
1333
1414
  "MemorySize":{"shape":"MemorySize"},
1334
1415
  "VpcConfig":{"shape":"VpcConfig"},
1416
+ "Environment":{"shape":"Environment"},
1417
+ "KMSKeyArn":{"shape":"KMSKeyArn"},
1335
1418
  "Runtime":{"shape":"Runtime"}
1336
1419
  }
1337
1420
  },
@@ -1,6 +1,7 @@
1
1
  Aws.add_service(:ElasticTranscoder, {
2
2
  api: "#{Aws::API_DIR}/elastictranscoder/2012-09-25/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/elastictranscoder/2012-09-25/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/elastictranscoder/2012-09-25/examples-1.json",
4
5
  paginators: "#{Aws::API_DIR}/elastictranscoder/2012-09-25/paginators-1.json",
5
6
  waiters: "#{Aws::API_DIR}/elastictranscoder/2012-09-25/waiters-2.json",
6
7
  })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.6.24'
2
+ VERSION = '2.6.25'
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.6.24
4
+ version: 2.6.25
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: 2016-11-17 00:00:00.000000000 Z
11
+ date: 2016-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -175,6 +175,7 @@ files:
175
175
  - apis/elasticmapreduce/2009-03-31/paginators-1.json
176
176
  - apis/elasticmapreduce/2009-03-31/waiters-2.json
177
177
  - apis/elastictranscoder/2012-09-25/api-2.json
178
+ - apis/elastictranscoder/2012-09-25/examples-1.json
178
179
  - apis/elastictranscoder/2012-09-25/paginators-1.json
179
180
  - apis/elastictranscoder/2012-09-25/waiters-2.json
180
181
  - apis/email/2010-12-01/api-2.json