summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/RecycleBin
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/RecycleBin
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/RecycleBin')
-rw-r--r--vendor/aws/aws-sdk-php/src/RecycleBin/Exception/RecycleBinException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/RecycleBin/RecycleBinClient.php25
2 files changed, 34 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/RecycleBin/Exception/RecycleBinException.php b/vendor/aws/aws-sdk-php/src/RecycleBin/Exception/RecycleBinException.php
new file mode 100644
index 0000000..49a8ddb
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/RecycleBin/Exception/RecycleBinException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\RecycleBin\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Recycle Bin** service.
+ */
+class RecycleBinException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/RecycleBin/RecycleBinClient.php b/vendor/aws/aws-sdk-php/src/RecycleBin/RecycleBinClient.php
new file mode 100644
index 0000000..3aaf6fc
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/RecycleBin/RecycleBinClient.php
@@ -0,0 +1,25 @@
+<?php
+namespace Aws\RecycleBin;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Recycle Bin** service.
+ * @method \Aws\Result createRule(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createRuleAsync(array $args = [])
+ * @method \Aws\Result deleteRule(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteRuleAsync(array $args = [])
+ * @method \Aws\Result getRule(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getRuleAsync(array $args = [])
+ * @method \Aws\Result listRules(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listRulesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(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 updateRule(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateRuleAsync(array $args = [])
+ */
+class RecycleBinClient extends AwsClient {}