| 1 | <?php declare(strict_types=1); |
||
| 13 | class LoadbalancerStatus extends OperatorResource implements Retrievable |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | public $operatingStatus; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | public $provisioningStatus; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | public $listeners; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $loadbalancerId; |
||
| 34 | |||
| 35 | protected $resourceKey = 'statuses'; |
||
| 36 | |||
| 37 | protected $aliases = [ |
||
| 38 | 'operating_status' => 'operatingStatus', |
||
| 39 | 'provisioning_status' => 'provisioningStatus', |
||
| 40 | 'loadbalancer_id' => 'loadbalancerId' |
||
| 41 | ]; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritDoc} |
||
| 45 | */ |
||
| 46 | public function retrieve() |
||
| 51 | } |
||
| 52 |