MQClient.php
56 lines
| 1 | <?php |
| 2 | namespace Aws\MQ; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **AmazonMQ** service. |
| 8 | * @method \Aws\Result createBroker(array $args = []) |
| 9 | * @method \GuzzleHttp\Promise\Promise createBrokerAsync(array $args = []) |
| 10 | * @method \Aws\Result createConfiguration(array $args = []) |
| 11 | * @method \GuzzleHttp\Promise\Promise createConfigurationAsync(array $args = []) |
| 12 | * @method \Aws\Result createTags(array $args = []) |
| 13 | * @method \GuzzleHttp\Promise\Promise createTagsAsync(array $args = []) |
| 14 | * @method \Aws\Result createUser(array $args = []) |
| 15 | * @method \GuzzleHttp\Promise\Promise createUserAsync(array $args = []) |
| 16 | * @method \Aws\Result deleteBroker(array $args = []) |
| 17 | * @method \GuzzleHttp\Promise\Promise deleteBrokerAsync(array $args = []) |
| 18 | * @method \Aws\Result deleteTags(array $args = []) |
| 19 | * @method \GuzzleHttp\Promise\Promise deleteTagsAsync(array $args = []) |
| 20 | * @method \Aws\Result deleteUser(array $args = []) |
| 21 | * @method \GuzzleHttp\Promise\Promise deleteUserAsync(array $args = []) |
| 22 | * @method \Aws\Result describeBroker(array $args = []) |
| 23 | * @method \GuzzleHttp\Promise\Promise describeBrokerAsync(array $args = []) |
| 24 | * @method \Aws\Result describeBrokerEngineTypes(array $args = []) |
| 25 | * @method \GuzzleHttp\Promise\Promise describeBrokerEngineTypesAsync(array $args = []) |
| 26 | * @method \Aws\Result describeBrokerInstanceOptions(array $args = []) |
| 27 | * @method \GuzzleHttp\Promise\Promise describeBrokerInstanceOptionsAsync(array $args = []) |
| 28 | * @method \Aws\Result describeConfiguration(array $args = []) |
| 29 | * @method \GuzzleHttp\Promise\Promise describeConfigurationAsync(array $args = []) |
| 30 | * @method \Aws\Result describeConfigurationRevision(array $args = []) |
| 31 | * @method \GuzzleHttp\Promise\Promise describeConfigurationRevisionAsync(array $args = []) |
| 32 | * @method \Aws\Result describeUser(array $args = []) |
| 33 | * @method \GuzzleHttp\Promise\Promise describeUserAsync(array $args = []) |
| 34 | * @method \Aws\Result listBrokers(array $args = []) |
| 35 | * @method \GuzzleHttp\Promise\Promise listBrokersAsync(array $args = []) |
| 36 | * @method \Aws\Result listConfigurationRevisions(array $args = []) |
| 37 | * @method \GuzzleHttp\Promise\Promise listConfigurationRevisionsAsync(array $args = []) |
| 38 | * @method \Aws\Result listConfigurations(array $args = []) |
| 39 | * @method \GuzzleHttp\Promise\Promise listConfigurationsAsync(array $args = []) |
| 40 | * @method \Aws\Result listTags(array $args = []) |
| 41 | * @method \GuzzleHttp\Promise\Promise listTagsAsync(array $args = []) |
| 42 | * @method \Aws\Result listUsers(array $args = []) |
| 43 | * @method \GuzzleHttp\Promise\Promise listUsersAsync(array $args = []) |
| 44 | * @method \Aws\Result promote(array $args = []) |
| 45 | * @method \GuzzleHttp\Promise\Promise promoteAsync(array $args = []) |
| 46 | * @method \Aws\Result rebootBroker(array $args = []) |
| 47 | * @method \GuzzleHttp\Promise\Promise rebootBrokerAsync(array $args = []) |
| 48 | * @method \Aws\Result updateBroker(array $args = []) |
| 49 | * @method \GuzzleHttp\Promise\Promise updateBrokerAsync(array $args = []) |
| 50 | * @method \Aws\Result updateConfiguration(array $args = []) |
| 51 | * @method \GuzzleHttp\Promise\Promise updateConfigurationAsync(array $args = []) |
| 52 | * @method \Aws\Result updateUser(array $args = []) |
| 53 | * @method \GuzzleHttp\Promise\Promise updateUserAsync(array $args = []) |
| 54 | */ |
| 55 | class MQClient extends AwsClient {} |
| 56 |