You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can view events associated with the activity between a node and a load balancer. An instance of `OpenCloud\Common\Collection\PaginatedIterator` is returned.
207
206
208
207
```php
209
208
$nodeEvents = $loadBalancer->nodeEventList();
210
-
foreach ($nodeEvents as $nodeEvent){
211
-
var_dump($nodeEvent); // instance of OpenCloud\LoadBalancer\Resource\NodeEvent
A **virtual IP (VIP)** makes a load balancer accessible by clients. The load balancing service supports either a public VIP address (`PUBLIC`), routable on the public Internet, or a ServiceNet VIP address (`SERVICENET`), routable only within the region in which the load balancer resides.
215
+
216
+
A **virtual IP (VIP)** makes a load balancer accessible by clients. The load balancing service supports either a public VIP address (`PUBLIC`), routable on the public Internet, or a ServiceNet VIP address (`SERVICENET`), routable only within the region in which the load balancer resides.
217
217
218
218
### List Virtual IPs
219
219
220
220
You can list the VIPs associated with a load balancer. An instance of `OpenCloud\Common\Collection\PaginatedIterator` is returned.
221
221
222
222
```php
223
223
$vips = $loadBalancer->virtualIpList();
224
-
foreach ($vips as $vip)
225
-
{
226
-
var_dump($vip); // instance of OpenCloud\LoadBalancer\Resource\VirtualIp}
224
+
foreach ($vips as $vip) {
225
+
/** @var $vip of OpenCloud\LoadBalancer\Resource\VirtualIp **/
226
+
}
227
227
```
228
228
229
229
### Add Virtual IPv6
@@ -262,9 +262,9 @@ You can list all supported load balancing algorithms using a load balancer servi
0 commit comments