1 | <?php declare(strict_types=1); |
||
13 | class LoadBalancerStat extends OperatorResource implements Retrievable |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | public $bytesIn; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | public $bytesOut; |
||
24 | |||
25 | /** |
||
26 | * @var integer |
||
27 | */ |
||
28 | public $totalConnections; |
||
29 | |||
30 | /** |
||
31 | * @var integer |
||
32 | */ |
||
33 | public $activeConnections; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | public $loadbalancerId; |
||
39 | |||
40 | protected $resourceKey = 'stats'; |
||
41 | |||
42 | protected $aliases = [ |
||
43 | 'bytes_in' => 'bytesIn', |
||
44 | 'bytes_out' => 'bytesOut', |
||
45 | 'total_connections' => 'totalConnections', |
||
46 | 'active_connections' => 'activeConnections', |
||
47 | 'loadbalancer_id' => 'loadbalancerId' |
||
48 | ]; |
||
49 | |||
50 | /** |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | public function retrieve() |
||
58 | } |
||
59 |