summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/PaymentCryptography
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-20 16:44:35 +0300
committerAndrew Dolgov <[email protected]>2023-10-20 16:44:35 +0300
commit8bec661288b276c98bdb0e773e5f4d5275dc4c87 (patch)
tree8617ebe581c62fc46a7881aa61801ebce9d3c603 /vendor/aws/aws-sdk-php/src/PaymentCryptography
parent540438c2eb5452bacad30c247906bfa287f2da1d (diff)
update AWK SDKHEADmaster
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/PaymentCryptography')
-rw-r--r--vendor/aws/aws-sdk-php/src/PaymentCryptography/Exception/PaymentCryptographyException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/PaymentCryptography/PaymentCryptographyClient.php49
2 files changed, 58 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/PaymentCryptography/Exception/PaymentCryptographyException.php b/vendor/aws/aws-sdk-php/src/PaymentCryptography/Exception/PaymentCryptographyException.php
new file mode 100644
index 0000000..205e8c6
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PaymentCryptography/Exception/PaymentCryptographyException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\PaymentCryptography\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Payment Cryptography Control Plane** service.
+ */
+class PaymentCryptographyException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/PaymentCryptography/PaymentCryptographyClient.php b/vendor/aws/aws-sdk-php/src/PaymentCryptography/PaymentCryptographyClient.php
new file mode 100644
index 0000000..30a5439
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PaymentCryptography/PaymentCryptographyClient.php
@@ -0,0 +1,49 @@
+<?php
+namespace Aws\PaymentCryptography;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Payment Cryptography Control Plane** service.
+ * @method \Aws\Result createAlias(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createAliasAsync(array $args = [])
+ * @method \Aws\Result createKey(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createKeyAsync(array $args = [])
+ * @method \Aws\Result deleteAlias(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteAliasAsync(array $args = [])
+ * @method \Aws\Result deleteKey(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteKeyAsync(array $args = [])
+ * @method \Aws\Result exportKey(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise exportKeyAsync(array $args = [])
+ * @method \Aws\Result getAlias(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getAliasAsync(array $args = [])
+ * @method \Aws\Result getKey(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getKeyAsync(array $args = [])
+ * @method \Aws\Result getParametersForExport(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getParametersForExportAsync(array $args = [])
+ * @method \Aws\Result getParametersForImport(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getParametersForImportAsync(array $args = [])
+ * @method \Aws\Result getPublicKeyCertificate(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getPublicKeyCertificateAsync(array $args = [])
+ * @method \Aws\Result importKey(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise importKeyAsync(array $args = [])
+ * @method \Aws\Result listAliases(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAliasesAsync(array $args = [])
+ * @method \Aws\Result listKeys(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listKeysAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result restoreKey(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise restoreKeyAsync(array $args = [])
+ * @method \Aws\Result startKeyUsage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startKeyUsageAsync(array $args = [])
+ * @method \Aws\Result stopKeyUsage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise stopKeyUsageAsync(array $args = [])
+ * @method \Aws\Result tagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
+ * @method \Aws\Result untagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
+ * @method \Aws\Result updateAlias(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateAliasAsync(array $args = [])
+ */
+class PaymentCryptographyClient extends AwsClient {}