summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/MQ
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/MQ
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/MQ')
-rw-r--r--vendor/aws/aws-sdk-php/src/MQ/Exception/MQException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/MQ/MQClient.php53
2 files changed, 62 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/MQ/Exception/MQException.php b/vendor/aws/aws-sdk-php/src/MQ/Exception/MQException.php
new file mode 100644
index 0000000..ee3e64f
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/MQ/Exception/MQException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\MQ\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AmazonMQ** service.
+ */
+class MQException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/MQ/MQClient.php b/vendor/aws/aws-sdk-php/src/MQ/MQClient.php
new file mode 100644
index 0000000..78b12c4
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/MQ/MQClient.php
@@ -0,0 +1,53 @@
+<?php
+namespace Aws\MQ;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AmazonMQ** service.
+ * @method \Aws\Result createBroker(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createBrokerAsync(array $args = [])
+ * @method \Aws\Result createConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createConfigurationAsync(array $args = [])
+ * @method \Aws\Result createTags(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createTagsAsync(array $args = [])
+ * @method \Aws\Result createUser(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createUserAsync(array $args = [])
+ * @method \Aws\Result deleteBroker(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteBrokerAsync(array $args = [])
+ * @method \Aws\Result deleteTags(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = [])
+ * @method \Aws\Result deleteUser(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteUserAsync(array $args = [])
+ * @method \Aws\Result describeBroker(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBrokerAsync(array $args = [])
+ * @method \Aws\Result describeBrokerEngineTypes(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBrokerEngineTypesAsync(array $args = [])
+ * @method \Aws\Result describeBrokerInstanceOptions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeBrokerInstanceOptionsAsync(array $args = [])
+ * @method \Aws\Result describeConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeConfigurationAsync(array $args = [])
+ * @method \Aws\Result describeConfigurationRevision(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeConfigurationRevisionAsync(array $args = [])
+ * @method \Aws\Result describeUser(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeUserAsync(array $args = [])
+ * @method \Aws\Result listBrokers(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listBrokersAsync(array $args = [])
+ * @method \Aws\Result listConfigurationRevisions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listConfigurationRevisionsAsync(array $args = [])
+ * @method \Aws\Result listConfigurations(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listConfigurationsAsync(array $args = [])
+ * @method \Aws\Result listTags(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsAsync(array $args = [])
+ * @method \Aws\Result listUsers(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listUsersAsync(array $args = [])
+ * @method \Aws\Result rebootBroker(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise rebootBrokerAsync(array $args = [])
+ * @method \Aws\Result updateBroker(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateBrokerAsync(array $args = [])
+ * @method \Aws\Result updateConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateConfigurationAsync(array $args = [])
+ * @method \Aws\Result updateUser(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateUserAsync(array $args = [])
+ */
+class MQClient extends AwsClient {}