AcmClient.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Aws\Acm;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS Certificate Manager** service.
  6. *
  7. * @method \Aws\Result addTagsToCertificate(array $args = [])
  8. * @method \GuzzleHttp\Promise\Promise addTagsToCertificateAsync(array $args = [])
  9. * @method \Aws\Result deleteCertificate(array $args = [])
  10. * @method \GuzzleHttp\Promise\Promise deleteCertificateAsync(array $args = [])
  11. * @method \Aws\Result describeCertificate(array $args = [])
  12. * @method \GuzzleHttp\Promise\Promise describeCertificateAsync(array $args = [])
  13. * @method \Aws\Result exportCertificate(array $args = [])
  14. * @method \GuzzleHttp\Promise\Promise exportCertificateAsync(array $args = [])
  15. * @method \Aws\Result getAccountConfiguration(array $args = [])
  16. * @method \GuzzleHttp\Promise\Promise getAccountConfigurationAsync(array $args = [])
  17. * @method \Aws\Result getCertificate(array $args = [])
  18. * @method \GuzzleHttp\Promise\Promise getCertificateAsync(array $args = [])
  19. * @method \Aws\Result importCertificate(array $args = [])
  20. * @method \GuzzleHttp\Promise\Promise importCertificateAsync(array $args = [])
  21. * @method \Aws\Result listCertificates(array $args = [])
  22. * @method \GuzzleHttp\Promise\Promise listCertificatesAsync(array $args = [])
  23. * @method \Aws\Result listTagsForCertificate(array $args = [])
  24. * @method \GuzzleHttp\Promise\Promise listTagsForCertificateAsync(array $args = [])
  25. * @method \Aws\Result putAccountConfiguration(array $args = [])
  26. * @method \GuzzleHttp\Promise\Promise putAccountConfigurationAsync(array $args = [])
  27. * @method \Aws\Result removeTagsFromCertificate(array $args = [])
  28. * @method \GuzzleHttp\Promise\Promise removeTagsFromCertificateAsync(array $args = [])
  29. * @method \Aws\Result renewCertificate(array $args = [])
  30. * @method \GuzzleHttp\Promise\Promise renewCertificateAsync(array $args = [])
  31. * @method \Aws\Result requestCertificate(array $args = [])
  32. * @method \GuzzleHttp\Promise\Promise requestCertificateAsync(array $args = [])
  33. * @method \Aws\Result resendValidationEmail(array $args = [])
  34. * @method \GuzzleHttp\Promise\Promise resendValidationEmailAsync(array $args = [])
  35. * @method \Aws\Result updateCertificateOptions(array $args = [])
  36. * @method \GuzzleHttp\Promise\Promise updateCertificateOptionsAsync(array $args = [])
  37. */
  38. class AcmClient extends AwsClient {}