PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
aws
/
aws-sdk-php
/
src
<?php namespace Aws; use Aws\Api\Service; /** * A trait providing generic functionality for interacting with Amazon Web * Services. This is meant to be used in classes implementing * \Aws\AwsClientInterface */ trait AwsClientTrait { public function getPaginator($name, array $args = []) { $config = $this->getApi()->getPaginatorConfig($name); return new ResultPaginator($this, $name, $args, $config); } public function getIterator($name, array $args = []) { $config = $this->getApi()->getPaginatorConfig($name); if (!$config['result_key']) { throw new \UnexpectedValueException(sprintf( 'There are no resources to iterate for the %s operation of %s', $name, $this->getApi()['serviceFullName'] )); } $key = is_array($config['result_key']) ? $config['result_key'][0] : $config['result_key']; if ($config['output_token'] && $config['input_token']) { return $this->getPaginator($name, $args)->search($key); } $result = $this->execute($this->getCommand($name, $args))->search($key); return new \ArrayIterator((array) $result); } public function waitUntil($name, array $args = []) { return $this->getWaiter($name, $args)->promise()->wait(); } public function getWaiter($name, array $args = []) { $config = isset($args['@waiter']) ? $args['@waiter'] : []; $config += $this->getApi()->getWaiterConfig($name); return new Waiter($this, $name, $args, $config); } public function execute(CommandInterface $command) { return $this->executeAsync($command)->wait(); } public function executeAsync(CommandInterface $command) { $handler = $command->getHandlerList()->resolve(); return $handler($command); } public function __call($name, array $args) { if (substr($name, -5) === 'Async') { $name = substr($name, 0, -5); $isAsync = true; } if (!empty($this->aliases[ucfirst($name)])) { $name = $this->aliases[ucfirst($name)]; } $params = isset($args[0]) ? $args[0] : []; if (!empty($isAsync)) { return $this->executeAsync( $this->getCommand($name, $params) ); } return $this->execute($this->getCommand($name, $params)); } /** * @param string $name * @param array $args * * @return CommandInterface */ abstract public function getCommand($name, array $args = []); /** * @return Service */ abstract public function getApi(); }
[+]
Exception
[+]
Endpoint
[-] Command.php
[edit]
[-] IdempotencyTokenMiddleware.php
[edit]
[-] QueryCompatibleInputMiddleware.php
[edit]
[-] ResultInterface.php
[edit]
[+]
Auth
[-] MonitoringEventsInterface.php
[edit]
[+]
ClientSideMonitoring
[-] RetryMiddlewareV2.php
[edit]
[-] WrappedHttpHandler.php
[edit]
[-] TraceMiddleware.php
[edit]
[-] AbstractConfigurationProvider.php
[edit]
[+]
Signature
[+]
Glacier
[+]
Token
[+]
Api
[-] InputValidationMiddleware.php
[edit]
[-] UserAgentMiddleware.php
[edit]
[-] ClientResolver.php
[edit]
[+]
SSOOIDC
[+]
data
[-] RetryMiddleware.php
[edit]
[+]
DefaultsMode
[-] Result.php
[edit]
[+]
Arn
[-] RequestCompressionMiddleware.php
[edit]
[-] History.php
[edit]
[-] ConfigurationProviderInterface.php
[edit]
[+]
Identity
[+]
SSO
[-] AwsClient.php
[edit]
[-] AwsClientInterface.php
[edit]
[+]
Kms
[-] functions.php
[edit]
[-] MetricsBuilder.php
[edit]
[-] Sdk.php
[edit]
[-] ResultPaginator.php
[edit]
[-] PresignUrlMiddleware.php
[edit]
[-] StreamRequestPayloadMiddleware.php
[edit]
[-] HashingStream.php
[edit]
[-] Waiter.php
[edit]
[-] EndpointParameterMiddleware.php
[edit]
[-] Middleware.php
[edit]
[-] PhpHash.php
[edit]
[-] Psr16CacheAdapter.php
[edit]
[+]
..
[+]
Retry
[+]
Script
[-] DoctrineCacheAdapter.php
[edit]
[+]
Sts
[-] LruArrayCache.php
[edit]
[+]
Credentials
[+]
Crypto
[+]
Configuration
[+]
EndpointDiscovery
[-] PsrCacheAdapter.php
[edit]
[+]
Handler
[-] MockHandler.php
[edit]
[-] HashInterface.php
[edit]
[-] HasDataTrait.php
[edit]
[-] HandlerList.php
[edit]
[-] CommandInterface.php
[edit]
[-] JsonCompiler.php
[edit]
[-] CacheInterface.php
[edit]
[+]
EndpointV2
[-] MultiRegionClient.php
[edit]
[+]
Multipart
[+]
S3
[-] CommandPool.php
[edit]
[-] ResponseContainerInterface.php
[edit]
[-] HasMonitoringEventsTrait.php
[edit]
[-] AwsClientTrait.php
[edit]