| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace AlibabaCloud\Client;
- use AlibabaCloud\Client\Result\Result;
- use AlibabaCloud\Client\Clients\Client;
- use AlibabaCloud\Client\Request\Request;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- /**
- * Class DefaultAcsClient
- *
- * @package AlibabaCloud
- *
- * @deprecated deprecated since version 2.0, Use AlibabaCloud instead.
- * @codeCoverageIgnore
- */
- class DefaultAcsClient
- {
- /**
- * @var string
- */
- public $randClientName;
- /**
- * DefaultAcsClient constructor.
- *
- * @param Client $client
- *
- * @throws ClientException
- */
- public function __construct(Client $client)
- {
- $this->randClientName = \uniqid('', true);
- $client->name($this->randClientName);
- }
- /**
- * @param Request|Result $request
- *
- * @return Result|string
- * @throws ClientException
- * @throws ServerException
- */
- public function getAcsResponse($request)
- {
- if ($request instanceof Result) {
- return $request;
- }
- return $request->client($this->randClientName)->request();
- }
- }
|