aws-sdk 2.801.0 → 2.805.0

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/amplifybackend-2020-08-11.min.json +0 -8
  4. package/apis/batch-2016-08-10.min.json +81 -21
  5. package/apis/compute-optimizer-2019-11-01.min.json +110 -0
  6. package/apis/{profile-2020-08-15.examples.json → customer-profiles-2020-08-15.examples.json} +0 -0
  7. package/apis/{profile-2020-08-15.min.json → customer-profiles-2020-08-15.min.json} +3 -3
  8. package/apis/{profile-2020-08-15.paginators.json → customer-profiles-2020-08-15.paginators.json} +0 -0
  9. package/apis/dms-2016-01-01.min.json +9 -1
  10. package/apis/ec2-2016-11-15.min.json +4 -0
  11. package/apis/lambda-2015-03-31.examples.json +6 -6
  12. package/apis/license-manager-2018-08-01.min.json +957 -51
  13. package/apis/medialive-2017-10-14.min.json +240 -158
  14. package/apis/metadata.json +4 -3
  15. package/apis/rds-2014-10-31.min.json +200 -132
  16. package/apis/servicecatalog-appregistry-2020-06-24.min.json +80 -0
  17. package/apis/ssm-2014-11-06.min.json +348 -203
  18. package/clients/all.d.ts +1 -1
  19. package/clients/all.js +2 -2
  20. package/clients/amplifybackend.d.ts +74 -74
  21. package/clients/batch.d.ts +200 -133
  22. package/clients/computeoptimizer.d.ts +179 -22
  23. package/clients/{profile.d.ts → customerprofiles.d.ts} +63 -63
  24. package/clients/customerprofiles.js +18 -0
  25. package/clients/directoryservice.d.ts +24 -21
  26. package/clients/dms.d.ts +16 -0
  27. package/clients/ec2.d.ts +6 -2
  28. package/clients/kafka.d.ts +4 -4
  29. package/clients/lambda.d.ts +10 -10
  30. package/clients/licensemanager.d.ts +1350 -72
  31. package/clients/medialive.d.ts +80 -1
  32. package/clients/rds.d.ts +128 -43
  33. package/clients/servicecatalogappregistry.d.ts +61 -0
  34. package/clients/ssm.d.ts +197 -10
  35. package/clients/workspaces.d.ts +10 -10
  36. package/dist/aws-sdk-core-react-native.js +2 -2
  37. package/dist/aws-sdk-react-native.js +31 -27
  38. package/dist/aws-sdk.js +565 -343
  39. package/dist/aws-sdk.min.js +60 -60
  40. package/lib/config_service_placeholders.d.ts +2 -2
  41. package/lib/core.js +1 -1
  42. package/lib/services/s3.js +6 -2
  43. package/package.json +1 -1
  44. package/clients/profile.js +0 -18
@@ -483,6 +483,86 @@
483
483
  },
484
484
  "idempotent": true
485
485
  },
486
+ "ListTagsForResource": {
487
+ "http": {
488
+ "method": "GET",
489
+ "requestUri": "/tags/{resourceArn}"
490
+ },
491
+ "input": {
492
+ "type": "structure",
493
+ "required": [
494
+ "resourceArn"
495
+ ],
496
+ "members": {
497
+ "resourceArn": {
498
+ "location": "uri",
499
+ "locationName": "resourceArn"
500
+ }
501
+ }
502
+ },
503
+ "output": {
504
+ "type": "structure",
505
+ "members": {
506
+ "tags": {
507
+ "shape": "Sf"
508
+ }
509
+ }
510
+ }
511
+ },
512
+ "TagResource": {
513
+ "http": {
514
+ "requestUri": "/tags/{resourceArn}"
515
+ },
516
+ "input": {
517
+ "type": "structure",
518
+ "required": [
519
+ "resourceArn",
520
+ "tags"
521
+ ],
522
+ "members": {
523
+ "resourceArn": {
524
+ "location": "uri",
525
+ "locationName": "resourceArn"
526
+ },
527
+ "tags": {
528
+ "shape": "Sf"
529
+ }
530
+ }
531
+ },
532
+ "output": {
533
+ "type": "structure",
534
+ "members": {}
535
+ }
536
+ },
537
+ "UntagResource": {
538
+ "http": {
539
+ "method": "DELETE",
540
+ "requestUri": "/tags/{resourceArn}"
541
+ },
542
+ "input": {
543
+ "type": "structure",
544
+ "required": [
545
+ "resourceArn",
546
+ "tagKeys"
547
+ ],
548
+ "members": {
549
+ "resourceArn": {
550
+ "location": "uri",
551
+ "locationName": "resourceArn"
552
+ },
553
+ "tagKeys": {
554
+ "location": "querystring",
555
+ "locationName": "tagKeys",
556
+ "type": "list",
557
+ "member": {}
558
+ }
559
+ }
560
+ },
561
+ "output": {
562
+ "type": "structure",
563
+ "members": {}
564
+ }
565
+ },
486
566
  "UpdateApplication": {
487
567
  "http": {
488
568
  "method": "PATCH",