Server IP : 184.154.167.98 / Your IP : 18.119.133.172 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/sesiones/3rdparty/php-opencloud/openstack/src/Common/Auth/ |
Upload File : |
<?php declare(strict_types=1); namespace OpenStack\Common\Auth; interface Catalog { /** * Attempts to retrieve the base URL for a service from the catalog according to the arguments provided. * * @param string $name The name of the service as it appears in the catalog * @param string $type The type of the service as it appears in the catalog * @param string $region The region of the service as it appears in the catalog * @param string $urlType The URL type of the service as it appears in the catalog * * @throws \RuntimeException If no endpoint is matched * * @returns string */ public function getServiceUrl(string $name, string $type, string $region, string $urlType): string; }