ACMPCAClient.php 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace Aws\ACMPCA;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS Certificate Manager Private Certificate Authority** service.
  6. * @method \Aws\Result createCertificateAuthority(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createCertificateAuthorityAsync(array $args = [])
  8. * @method \Aws\Result createCertificateAuthorityAuditReport(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createCertificateAuthorityAuditReportAsync(array $args = [])
  10. * @method \Aws\Result createPermission(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise createPermissionAsync(array $args = [])
  12. * @method \Aws\Result deleteCertificateAuthority(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteCertificateAuthorityAsync(array $args = [])
  14. * @method \Aws\Result deletePermission(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise deletePermissionAsync(array $args = [])
  16. * @method \Aws\Result deletePolicy(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise deletePolicyAsync(array $args = [])
  18. * @method \Aws\Result describeCertificateAuthority(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise describeCertificateAuthorityAsync(array $args = [])
  20. * @method \Aws\Result describeCertificateAuthorityAuditReport(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise describeCertificateAuthorityAuditReportAsync(array $args = [])
  22. * @method \Aws\Result getCertificate(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise getCertificateAsync(array $args = [])
  24. * @method \Aws\Result getCertificateAuthorityCertificate(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise getCertificateAuthorityCertificateAsync(array $args = [])
  26. * @method \Aws\Result getCertificateAuthorityCsr(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise getCertificateAuthorityCsrAsync(array $args = [])
  28. * @method \Aws\Result getPolicy(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise getPolicyAsync(array $args = [])
  30. * @method \Aws\Result importCertificateAuthorityCertificate(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise importCertificateAuthorityCertificateAsync(array $args = [])
  32. * @method \Aws\Result issueCertificate(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise issueCertificateAsync(array $args = [])
  34. * @method \Aws\Result listCertificateAuthorities(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise listCertificateAuthoritiesAsync(array $args = [])
  36. * @method \Aws\Result listPermissions(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise listPermissionsAsync(array $args = [])
  38. * @method \Aws\Result listTags(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise listTagsAsync(array $args = [])
  40. * @method \Aws\Result putPolicy(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise putPolicyAsync(array $args = [])
  42. * @method \Aws\Result restoreCertificateAuthority(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise restoreCertificateAuthorityAsync(array $args = [])
  44. * @method \Aws\Result revokeCertificate(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise revokeCertificateAsync(array $args = [])
  46. * @method \Aws\Result tagCertificateAuthority(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise tagCertificateAuthorityAsync(array $args = [])
  48. * @method \Aws\Result untagCertificateAuthority(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise untagCertificateAuthorityAsync(array $args = [])
  50. * @method \Aws\Result updateCertificateAuthority(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise updateCertificateAuthorityAsync(array $args = [])
  52. */
  53. class ACMPCAClient extends AwsClient {}