@aws-sdk/client-efs 3.454.0 → 3.459.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 (52) hide show
  1. package/README.md +38 -30
  2. package/dist-cjs/EFS.js +2 -0
  3. package/dist-cjs/commands/UpdateFileSystemProtectionCommand.js +51 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +50 -1
  6. package/dist-cjs/pagination/DescribeMountTargetsPaginator.js +29 -0
  7. package/dist-cjs/pagination/DescribeReplicationConfigurationsPaginator.js +29 -0
  8. package/dist-cjs/pagination/index.js +2 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +115 -2
  10. package/dist-es/EFS.js +2 -0
  11. package/dist-es/commands/UpdateFileSystemProtectionCommand.js +47 -0
  12. package/dist-es/commands/index.js +1 -0
  13. package/dist-es/models/models_0.js +47 -0
  14. package/dist-es/pagination/DescribeMountTargetsPaginator.js +25 -0
  15. package/dist-es/pagination/DescribeReplicationConfigurationsPaginator.js +25 -0
  16. package/dist-es/pagination/index.js +2 -0
  17. package/dist-es/protocols/Aws_restJson1.js +112 -1
  18. package/dist-types/EFS.d.ts +7 -0
  19. package/dist-types/EFSClient.d.ts +3 -2
  20. package/dist-types/commands/CreateAccessPointCommand.d.ts +8 -7
  21. package/dist-types/commands/CreateFileSystemCommand.d.ts +14 -6
  22. package/dist-types/commands/CreateMountTargetCommand.d.ts +6 -6
  23. package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +47 -36
  24. package/dist-types/commands/DeleteReplicationConfigurationCommand.d.ts +6 -4
  25. package/dist-types/commands/DescribeAccessPointsCommand.d.ts +5 -3
  26. package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +2 -1
  27. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +4 -0
  28. package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +5 -6
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  30. package/dist-types/commands/PutAccountPreferencesCommand.d.ts +4 -5
  31. package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +8 -8
  32. package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +37 -18
  33. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  34. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  35. package/dist-types/commands/UpdateFileSystemCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateFileSystemProtectionCommand.d.ts +108 -0
  37. package/dist-types/commands/index.d.ts +1 -0
  38. package/dist-types/models/models_0.d.ts +320 -99
  39. package/dist-types/pagination/DescribeMountTargetsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/DescribeReplicationConfigurationsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/index.d.ts +2 -0
  42. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  43. package/dist-types/ts3.4/EFS.d.ts +17 -0
  44. package/dist-types/ts3.4/EFSClient.d.ts +8 -2
  45. package/dist-types/ts3.4/commands/UpdateFileSystemProtectionCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +50 -0
  48. package/dist-types/ts3.4/pagination/DescribeMountTargetsPaginator.d.ts +11 -0
  49. package/dist-types/ts3.4/pagination/DescribeReplicationConfigurationsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
  52. package/package.json +3 -3
@@ -28,3 +28,4 @@ export * from "./PutLifecycleConfigurationCommand";
28
28
  export * from "./TagResourceCommand";
29
29
  export * from "./UntagResourceCommand";
30
30
  export * from "./UpdateFileSystemCommand";
31
+ export * from "./UpdateFileSystemProtectionCommand";