TransferClient.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace Aws\Transfer;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS Transfer for SFTP** service.
  6. * @method \Aws\Result createServer(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createServerAsync(array $args = [])
  8. * @method \Aws\Result createUser(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createUserAsync(array $args = [])
  10. * @method \Aws\Result deleteServer(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise deleteServerAsync(array $args = [])
  12. * @method \Aws\Result deleteSshPublicKey(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteSshPublicKeyAsync(array $args = [])
  14. * @method \Aws\Result deleteUser(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise deleteUserAsync(array $args = [])
  16. * @method \Aws\Result describeSecurityPolicy(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise describeSecurityPolicyAsync(array $args = [])
  18. * @method \Aws\Result describeServer(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise describeServerAsync(array $args = [])
  20. * @method \Aws\Result describeUser(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise describeUserAsync(array $args = [])
  22. * @method \Aws\Result importSshPublicKey(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise importSshPublicKeyAsync(array $args = [])
  24. * @method \Aws\Result listSecurityPolicies(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise listSecurityPoliciesAsync(array $args = [])
  26. * @method \Aws\Result listServers(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise listServersAsync(array $args = [])
  28. * @method \Aws\Result listTagsForResource(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  30. * @method \Aws\Result listUsers(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise listUsersAsync(array $args = [])
  32. * @method \Aws\Result startServer(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise startServerAsync(array $args = [])
  34. * @method \Aws\Result stopServer(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise stopServerAsync(array $args = [])
  36. * @method \Aws\Result tagResource(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  38. * @method \Aws\Result testIdentityProvider(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise testIdentityProviderAsync(array $args = [])
  40. * @method \Aws\Result untagResource(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  42. * @method \Aws\Result updateServer(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise updateServerAsync(array $args = [])
  44. * @method \Aws\Result updateUser(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise updateUserAsync(array $args = [])
  46. */
  47. class TransferClient extends AwsClient {}