1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace AlibabaCloud\Client\Clients;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Client\Filter\Filter;
- use AlibabaCloud\Client\Request\Request;
- use AlibabaCloud\Client\Credentials\StsCredential;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- use AlibabaCloud\Client\Credentials\CredentialsInterface;
- use AlibabaCloud\Client\Credentials\EcsRamRoleCredential;
- use AlibabaCloud\Client\Credentials\RamRoleArnCredential;
- use AlibabaCloud\Client\Credentials\RsaKeyPairCredential;
- use AlibabaCloud\Client\Credentials\Providers\EcsRamRoleProvider;
- use AlibabaCloud\Client\Credentials\Providers\RamRoleArnProvider;
- use AlibabaCloud\Client\Credentials\Providers\RsaKeyPairProvider;
- use AlibabaCloud\Client\Credentials\Providers\CredentialsProvider;
- /**
- * Trait ManageTrait.
- *
- * @mixin Client
- */
- trait ManageTrait
- {
- /**
- * @param int $timeout
- * @param int $connectTimeout
- *
- * @return CredentialsInterface|StsCredential
- *
- * @throws ClientException
- * @throws ServerException
- */
- public function getSessionCredential($timeout = Request::TIMEOUT, $connectTimeout = Request::CONNECT_TIMEOUT)
- {
- switch (\get_class($this->credential)) {
- case EcsRamRoleCredential::class:
- return (new EcsRamRoleProvider($this))->get();
- case RamRoleArnCredential::class:
- return (new RamRoleArnProvider($this))->get($timeout, $connectTimeout);
- case RsaKeyPairCredential::class:
- return (new RsaKeyPairProvider($this))->get($timeout, $connectTimeout);
- default:
- return $this->credential;
- }
- }
- /**
- * @return static
- * @throws ClientException
- * @deprecated
- * @codeCoverageIgnore
- */
- public function asGlobalClient()
- {
- return $this->asDefaultClient();
- }
- /**
- * Set the current client as the default client.
- *
- * @return static
- * @throws ClientException
- */
- public function asDefaultClient()
- {
- return $this->name(CredentialsProvider::getDefaultName());
- }
- /**
- * Naming clients.
- *
- * @param string $name
- *
- * @return static
- * @throws ClientException
- */
- public function name($name)
- {
- Filter::name($name);
- return AlibabaCloud::set($name, $this);
- }
- /**
- * @return bool
- */
- public function isDebug()
- {
- if (isset($this->options['debug'])) {
- return $this->options['debug'] === true && PHP_SAPI === 'cli';
- }
- return false;
- }
- }
|