summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/signer
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/aws/aws-sdk-php/src/signer
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/signer')
-rw-r--r--vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/signer/signerClient.php43
2 files changed, 52 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php b/vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php
new file mode 100644
index 0000000..4779f70
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/signer/Exception/signerException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\signer\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Signer** service.
+ */
+class signerException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/signer/signerClient.php b/vendor/aws/aws-sdk-php/src/signer/signerClient.php
new file mode 100644
index 0000000..27b2ba2
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/signer/signerClient.php
@@ -0,0 +1,43 @@
+<?php
+namespace Aws\signer;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Signer** service.
+ * @method \Aws\Result addProfilePermission(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise addProfilePermissionAsync(array $args = [])
+ * @method \Aws\Result cancelSigningProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise cancelSigningProfileAsync(array $args = [])
+ * @method \Aws\Result describeSigningJob(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSigningJobAsync(array $args = [])
+ * @method \Aws\Result getSigningPlatform(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getSigningPlatformAsync(array $args = [])
+ * @method \Aws\Result getSigningProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getSigningProfileAsync(array $args = [])
+ * @method \Aws\Result listProfilePermissions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listProfilePermissionsAsync(array $args = [])
+ * @method \Aws\Result listSigningJobs(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSigningJobsAsync(array $args = [])
+ * @method \Aws\Result listSigningPlatforms(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSigningPlatformsAsync(array $args = [])
+ * @method \Aws\Result listSigningProfiles(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSigningProfilesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result putSigningProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putSigningProfileAsync(array $args = [])
+ * @method \Aws\Result removeProfilePermission(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise removeProfilePermissionAsync(array $args = [])
+ * @method \Aws\Result revokeSignature(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise revokeSignatureAsync(array $args = [])
+ * @method \Aws\Result revokeSigningProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise revokeSigningProfileAsync(array $args = [])
+ * @method \Aws\Result startSigningJob(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startSigningJobAsync(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 = [])
+ */
+class signerClient extends AwsClient {}