EfsClient.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace Aws\Efs;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with **Amazon EFS**.
  6. *
  7. * @method \Aws\Result createAccessPoint(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise createAccessPointAsync(array $args = [])
  9. * @method \Aws\Result createFileSystem(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise createFileSystemAsync(array $args = [])
  11. * @method \Aws\Result createMountTarget(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise createMountTargetAsync(array $args = [])
  13. * @method \Aws\Result createReplicationConfiguration(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise createReplicationConfigurationAsync(array $args = [])
  15. * @method \Aws\Result createTags(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise createTagsAsync(array $args = [])
  17. * @method \Aws\Result deleteAccessPoint(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise deleteAccessPointAsync(array $args = [])
  19. * @method \Aws\Result deleteFileSystem(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise deleteFileSystemAsync(array $args = [])
  21. * @method \Aws\Result deleteFileSystemPolicy(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise deleteFileSystemPolicyAsync(array $args = [])
  23. * @method \Aws\Result deleteMountTarget(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise deleteMountTargetAsync(array $args = [])
  25. * @method \Aws\Result deleteReplicationConfiguration(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise deleteReplicationConfigurationAsync(array $args = [])
  27. * @method \Aws\Result deleteTags(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = [])
  29. * @method \Aws\Result describeAccessPoints(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise describeAccessPointsAsync(array $args = [])
  31. * @method \Aws\Result describeAccountPreferences(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise describeAccountPreferencesAsync(array $args = [])
  33. * @method \Aws\Result describeBackupPolicy(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise describeBackupPolicyAsync(array $args = [])
  35. * @method \Aws\Result describeFileSystemPolicy(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise describeFileSystemPolicyAsync(array $args = [])
  37. * @method \Aws\Result describeFileSystems(array $args = [])
  38. * @method \GuzzleHttp\Promise\Promise describeFileSystemsAsync(array $args = [])
  39. * @method \Aws\Result describeLifecycleConfiguration(array $args = [])
  40. * @method \GuzzleHttp\Promise\Promise describeLifecycleConfigurationAsync(array $args = [])
  41. * @method \Aws\Result describeMountTargetSecurityGroups(array $args = [])
  42. * @method \GuzzleHttp\Promise\Promise describeMountTargetSecurityGroupsAsync(array $args = [])
  43. * @method \Aws\Result describeMountTargets(array $args = [])
  44. * @method \GuzzleHttp\Promise\Promise describeMountTargetsAsync(array $args = [])
  45. * @method \Aws\Result describeReplicationConfigurations(array $args = [])
  46. * @method \GuzzleHttp\Promise\Promise describeReplicationConfigurationsAsync(array $args = [])
  47. * @method \Aws\Result describeTags(array $args = [])
  48. * @method \GuzzleHttp\Promise\Promise describeTagsAsync(array $args = [])
  49. * @method \Aws\Result listTagsForResource(array $args = [])
  50. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  51. * @method \Aws\Result modifyMountTargetSecurityGroups(array $args = [])
  52. * @method \GuzzleHttp\Promise\Promise modifyMountTargetSecurityGroupsAsync(array $args = [])
  53. * @method \Aws\Result putAccountPreferences(array $args = [])
  54. * @method \GuzzleHttp\Promise\Promise putAccountPreferencesAsync(array $args = [])
  55. * @method \Aws\Result putBackupPolicy(array $args = [])
  56. * @method \GuzzleHttp\Promise\Promise putBackupPolicyAsync(array $args = [])
  57. * @method \Aws\Result putFileSystemPolicy(array $args = [])
  58. * @method \GuzzleHttp\Promise\Promise putFileSystemPolicyAsync(array $args = [])
  59. * @method \Aws\Result putLifecycleConfiguration(array $args = [])
  60. * @method \GuzzleHttp\Promise\Promise putLifecycleConfigurationAsync(array $args = [])
  61. * @method \Aws\Result tagResource(array $args = [])
  62. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  63. * @method \Aws\Result untagResource(array $args = [])
  64. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  65. * @method \Aws\Result updateFileSystem(array $args = [])
  66. * @method \GuzzleHttp\Promise\Promise updateFileSystemAsync(array $args = [])
  67. * @method \Aws\Result updateFileSystemProtection(array $args = [])
  68. * @method \GuzzleHttp\Promise\Promise updateFileSystemProtectionAsync(array $args = [])
  69. */
  70. class EfsClient extends AwsClient {}