12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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();
- }
- }
|