Get-SCLoadBalancerConfiguration
Gets the configuration details for the load balancer that is contained within a computer tier configuration.
Syntax
Get-SCLoadBalancerConfiguration
[-VMMServer <ServerConnection>]
-ComputerTierConfiguration <ComputerTierConfiguration>
[<CommonParameters>]
Description
The Get-SCLoadBalancerConfiguration cmdlet gets the configuration details for the load balancer that is contained within a computer tier configuration.
Examples
Example 1: Get the load balancer configuration for a computer tier configuration
PS C:\> $ServiceConfig = Get-SCServiceConfiguration -Name "Service01"
PS C:\> $TierConfig = Get-SCComputerTierConfiguration -ServiceConfiguration $ServiceConfig
PS C:\> $LBConfig = Get-SCLoadBalancerConfiguration -ComputerTierConfiguration $TierConfig
PS C:\> $LBConfig
The first command gets service the service configuration object named Service01 and stores the object in the $ServiceConfig variable.
The second command gets the computer tier configuration for the service configuration stored in $ServiceConfig and stores the object in the $TierConfig variable.
The third command gets the load balancer configuration for the computer tier configuration stored in $TierConfig and stores the object in the $LBConfig variable.
The last command displays the properties of the load balancer configuration stored in $LBConfig to the user.
Parameters
-ComputerTierConfiguration
Specifies a computer tier configuration object.
Type: | ComputerTierConfiguration |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-VMMServer
Specifies a Virtual Machine Manager (VMM) server object.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Outputs
LoadBalancerConfiguration
This cmdlet returns a LoadBalancerConfiguration object.