AwsClientInterface.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. namespace Aws;
  3. use Psr\Http\Message\UriInterface;
  4. use GuzzleHttp\Promise\PromiseInterface;
  5. /**
  6. * Represents an AWS client.
  7. */
  8. interface AwsClientInterface
  9. {
  10. /**
  11. * Creates and executes a command for an operation by name.
  12. *
  13. * Suffixing an operation name with "Async" will return a
  14. * promise that can be used to execute commands asynchronously.
  15. *
  16. * @param string $name Name of the command to execute.
  17. * @param array $arguments Arguments to pass to the getCommand method.
  18. *
  19. * @return ResultInterface
  20. * @throws \Exception
  21. */
  22. public function __call($name, array $arguments);
  23. /**
  24. * Create a command for an operation name.
  25. *
  26. * Special keys may be set on the command to control how it behaves,
  27. * including:
  28. *
  29. * - @http: Associative array of transfer specific options to apply to the
  30. * request that is serialized for this command. Available keys include
  31. * "proxy", "verify", "timeout", "connect_timeout", "debug", "delay", and
  32. * "headers".
  33. *
  34. * @param string $name Name of the operation to use in the command
  35. * @param array $args Arguments to pass to the command
  36. *
  37. * @return CommandInterface
  38. * @throws \InvalidArgumentException if no command can be found by name
  39. */
  40. public function getCommand($name, array $args = []);
  41. /**
  42. * Execute a single command.
  43. *
  44. * @param CommandInterface $command Command to execute
  45. *
  46. * @return ResultInterface
  47. * @throws \Exception
  48. */
  49. public function execute(CommandInterface $command);
  50. /**
  51. * Execute a command asynchronously.
  52. *
  53. * @param CommandInterface $command Command to execute
  54. *
  55. * @return \GuzzleHttp\Promise\PromiseInterface
  56. */
  57. public function executeAsync(CommandInterface $command);
  58. /**
  59. * Returns a promise that is fulfilled with an
  60. * {@see \Aws\Credentials\CredentialsInterface} object.
  61. *
  62. * If you need the credentials synchronously, then call the wait() method
  63. * on the returned promise.
  64. *
  65. * @return PromiseInterface
  66. */
  67. public function getCredentials();
  68. /**
  69. * Get the region to which the client is configured to send requests.
  70. *
  71. * @return string
  72. */
  73. public function getRegion();
  74. /**
  75. * Gets the default endpoint, or base URL, used by the client.
  76. *
  77. * @return UriInterface
  78. */
  79. public function getEndpoint();
  80. /**
  81. * Get the service description associated with the client.
  82. *
  83. * @return \Aws\Api\Service
  84. */
  85. public function getApi();
  86. /**
  87. * Get a client configuration value.
  88. *
  89. * @param string|null $option The option to retrieve. Pass null to retrieve
  90. * all options.
  91. * @return mixed|null
  92. */
  93. public function getConfig($option = null);
  94. /**
  95. * Get the handler list used to transfer commands.
  96. *
  97. * This list can be modified to add middleware or to change the underlying
  98. * handler used to send HTTP requests.
  99. *
  100. * @return HandlerList
  101. */
  102. public function getHandlerList();
  103. /**
  104. * Get a resource iterator for the specified operation.
  105. *
  106. * @param string $name Name of the iterator to retrieve.
  107. * @param array $args Command arguments to use with each command.
  108. *
  109. * @return \Iterator
  110. * @throws \UnexpectedValueException if the iterator config is invalid.
  111. */
  112. public function getIterator($name, array $args = []);
  113. /**
  114. * Get a result paginator for the specified operation.
  115. *
  116. * @param string $name Name of the operation used for iterator
  117. * @param array $args Command args to be used with each command
  118. *
  119. * @return \Aws\ResultPaginator
  120. * @throws \UnexpectedValueException if the iterator config is invalid.
  121. */
  122. public function getPaginator($name, array $args = []);
  123. /**
  124. * Wait until a resource is in a particular state.
  125. *
  126. * @param string|callable $name Name of the waiter that defines the wait
  127. * configuration and conditions.
  128. * @param array $args Args to be used with each command executed
  129. * by the waiter. Waiter configuration options
  130. * can be provided in an associative array in
  131. * the @waiter key.
  132. * @return void
  133. * @throws \UnexpectedValueException if the waiter is invalid.
  134. */
  135. public function waitUntil($name, array $args = []);
  136. /**
  137. * Get a waiter that waits until a resource is in a particular state.
  138. *
  139. * Retrieving a waiter can be useful when you wish to wait asynchronously:
  140. *
  141. * $waiter = $client->getWaiter('foo', ['bar' => 'baz']);
  142. * $waiter->promise()->then(function () { echo 'Done!'; });
  143. *
  144. * @param string|callable $name Name of the waiter that defines the wait
  145. * configuration and conditions.
  146. * @param array $args Args to be used with each command executed
  147. * by the waiter. Waiter configuration options
  148. * can be provided in an associative array in
  149. * the @waiter key.
  150. * @return \Aws\Waiter
  151. * @throws \UnexpectedValueException if the waiter is invalid.
  152. */
  153. public function getWaiter($name, array $args = []);
  154. }