Add-GoGridLoadBalancer Cmdlet
TODO
Syntax
TODO
Detailed Description
TODO
Parameters
| Parameter | Type | Mandatory | Notes |
| Credential | PSCredential | Yes | Credential object containing API key and secret. |
| Name | string | Yes | Short name for the load balancer to be added to the grid. |
| VirtualInterface | string | Yes | A string that specifies the external IP address and port that the load balancer listens on. For example "173.1.23.194:80". |
| RealInterfaces | string[] | Yes | A string that specifies the internal real IP addresses and ports that the load balancer forwards requests to. For example "173.1.23.195:80","173.1.23.196:80". |
| Type | string | No | The kind of load balancing algorithm that is used. Use Get-GoGridOption with the loadbalancer.types lookup parameter to check the definitive list of possible values. |
| Persistence | string | No | The kind of connection persistence mechanism in use. Use Get-GoGridOption with the loadbalancer.persistence lookup parameter to check the definitive list of possible values. |
| Description | string | No | A longer description of what the load balancer is all about. |
Examples
$credential = Get-Credential
Add-GoGridLoadBalancer`
-Credential $credential `
-Name DemoLoadBalancer `
-VirtualInterface "173.1.23.194:80" `
-RealInterfaces "173.1.23.195:80","173.1.23.196:80"