| 1 | <?php |
||
| 14 | class Catalog extends AbstractResource implements \OpenStack\Common\Auth\Catalog |
||
| 15 | { |
||
| 16 | const DEFAULT_URL_TYPE = 'publicURL'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The catalog entries |
||
| 20 | * |
||
| 21 | * @var []Entry |
||
| 22 | */ |
||
| 23 | public $entries = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritDoc} |
||
| 27 | */ |
||
| 28 | 1 | public function populateFromResponse(ResponseInterface $response) |
|
| 36 | |||
| 37 | 2 | public function getServiceUrl($serviceName, $serviceType, $region, $urlType = self::DEFAULT_URL_TYPE) |
|
| 50 | } |
||
| 51 |