| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/3rdparty/php-opencloud/openstack/src/Identity/v2/Models/ |
Upload File : |
<?php
declare(strict_types=1);
namespace OpenStack\Identity\v2\Models;
use OpenStack\Common\Resource\Alias;
use OpenStack\Common\Resource\OperatorResource;
/**
* Represents an Identity v2 Catalog Entry.
*/
class Entry extends OperatorResource
{
/** @var string */
public $name;
/** @var string */
public $type;
/** @var []Endpoint */
public $endpoints = [];
/**
* {@inheritdoc}
*/
protected function getAliases(): array
{
return parent::getAliases() + [
'endpoints' => new Alias('endpoints', Endpoint::class, true),
];
}
/**
* Indicates whether this catalog entry matches a certain name and type.
*
* @return bool TRUE if it's a match, FALSE if not
*/
public function matches(string $name, string $type): bool
{
return $this->name == $name && $this->type == $type;
}
/**
* Retrieves the catalog entry's URL according to a specific region and URL type.
*/
public function getEndpointUrl(string $region, string $urlType): string
{
foreach ($this->endpoints as $endpoint) {
if ($endpoint->supportsRegion($region) && $endpoint->supportsUrlType($urlType)) {
return $endpoint->getUrl($urlType);
}
}
return '';
}
}