1 | <?php declare(strict_types=1); |
||
15 | class Catalog extends OperatorResource implements \OpenStack\Common\Auth\Catalog |
||
16 | { |
||
17 | const DEFAULT_URL_TYPE = 'publicURL'; |
||
18 | |||
19 | /** |
||
20 | * The catalog entries |
||
21 | * |
||
22 | * @var []Entry |
||
23 | */ |
||
24 | public $entries = []; |
||
25 | |||
26 | /** |
||
27 | * @var array |
||
28 | 1 | */ |
|
29 | protected $aliases = []; |
||
30 | 1 | ||
31 | /** |
||
32 | 1 | * @inheritdoc |
|
33 | 1 | */ |
|
34 | 1 | protected function getAliases(): array |
|
40 | 1 | ||
41 | 1 | /** |
|
42 | * {@inheritDoc} |
||
43 | 1 | */ |
|
44 | public function populateFromResponse(ResponseInterface $response): self |
||
54 | |||
55 | public function getServiceUrl( |
||
72 | } |
||
73 |