PaymentCryptographyClient.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace Aws\PaymentCryptography;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **Payment Cryptography Control Plane** service.
  6. * @method \Aws\Result createAlias(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createAliasAsync(array $args = [])
  8. * @method \Aws\Result createKey(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createKeyAsync(array $args = [])
  10. * @method \Aws\Result deleteAlias(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise deleteAliasAsync(array $args = [])
  12. * @method \Aws\Result deleteKey(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteKeyAsync(array $args = [])
  14. * @method \Aws\Result exportKey(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise exportKeyAsync(array $args = [])
  16. * @method \Aws\Result getAlias(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise getAliasAsync(array $args = [])
  18. * @method \Aws\Result getKey(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise getKeyAsync(array $args = [])
  20. * @method \Aws\Result getParametersForExport(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise getParametersForExportAsync(array $args = [])
  22. * @method \Aws\Result getParametersForImport(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise getParametersForImportAsync(array $args = [])
  24. * @method \Aws\Result getPublicKeyCertificate(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise getPublicKeyCertificateAsync(array $args = [])
  26. * @method \Aws\Result importKey(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise importKeyAsync(array $args = [])
  28. * @method \Aws\Result listAliases(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise listAliasesAsync(array $args = [])
  30. * @method \Aws\Result listKeys(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise listKeysAsync(array $args = [])
  32. * @method \Aws\Result listTagsForResource(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  34. * @method \Aws\Result restoreKey(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise restoreKeyAsync(array $args = [])
  36. * @method \Aws\Result startKeyUsage(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise startKeyUsageAsync(array $args = [])
  38. * @method \Aws\Result stopKeyUsage(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise stopKeyUsageAsync(array $args = [])
  40. * @method \Aws\Result tagResource(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  42. * @method \Aws\Result untagResource(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  44. * @method \Aws\Result updateAlias(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise updateAliasAsync(array $args = [])
  46. */
  47. class PaymentCryptographyClient extends AwsClient {}