first commit -> move some files from one-api
This commit is contained in:
42
vendor/aws_v3/Aws/Sts/RegionalEndpoints/Configuration.php
vendored
Normal file
42
vendor/aws_v3/Aws/Sts/RegionalEndpoints/Configuration.php
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
namespace Aws\Sts\RegionalEndpoints;
|
||||
|
||||
class Configuration implements ConfigurationInterface
|
||||
{
|
||||
private $endpointsType;
|
||||
private $isFallback;
|
||||
|
||||
public function __construct($endpointsType, $isFallback = false)
|
||||
{
|
||||
$this->endpointsType = strtolower($endpointsType);
|
||||
$this->isFallback = $isFallback;
|
||||
if (!in_array($this->endpointsType, ['legacy', 'regional'])) {
|
||||
throw new \InvalidArgumentException(
|
||||
"Configuration parameter must either be 'legacy' or 'regional'."
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getEndpointsType()
|
||||
{
|
||||
return $this->endpointsType;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function toArray()
|
||||
{
|
||||
return [
|
||||
'endpoints_type' => $this->getEndpointsType()
|
||||
];
|
||||
}
|
||||
|
||||
public function isFallback()
|
||||
{
|
||||
return $this->isFallback;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user