Get-SCLoadBalancerVIPMember

Applies To: System Center 2012 - Virtual Machine Manager

Get-SCLoadBalancerVIPMember

Gets a member of a load balancer VIP.

Syntax

Parameter Set: All
Get-SCLoadBalancerVIPMember [-IPAddress <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: ByID
Get-SCLoadBalancerVIPMember -ID <Guid> [-IPAddress <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: ByLoadBalancerVIP
Get-SCLoadBalancerVIPMember -LoadBalancerVIP <LoadBalancerVIP> [-IPAddress <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Detailed Description

The Get-SCLoadBalancerVIPMember cmdlet gets a member of a load balancer virtual IP (VIP).

For more information about Get-SCLoadBalancerVIPMember, type: "Get-Help Get-SCLoadBalancerVIPMember -online".

Parameters

-ID<Guid>

Specifies the numerical identifier (as a globally unique identifier, or GUID) for a specific object.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-IPAddress<String>

Specifies an IPv4 or IPv6 address.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-LoadBalancerVIP<LoadBalancerVIP>

Specifies a virtual IP (VIP) in a load balancer.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-VMMServer<ServerConnection>

Specifies a VMM server object.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • LoadBalancerVIPMember

Examples

1: Get a load balancer virtual IP (VIP) member.

The first command gets the load balancer object with the address LB01.Contoso.com and stores the object in the $LoadBalancer variable.

The second command gets the load balancer VIP with the IP address of 192.168.0.1 for the load balancer stored in $LoadBalancer and stores the object in the $VIP variable.

The last command gets the load balancer member for the load balancer VIP stored in $VIP with the IP address of 192.168.0.1 and displays information about the member to the user.

PS C:\> $LoadBalancer = Get-SCLoadBalancer -LoadBalancerAddress "LB01.Contoso.com"
PS C:\> $VIP = Get-SCLoadBalancerVIP -LoadBalancer $LoadBalancer -IPAddress "192.168.0.1"
PS C:\> Get-SCLoadBalancerVIPMember -LoadBalancerVIP $VIP -IPAddress "192.168.0.1"

Disable-SCLoadBalancerVIPMember

Enable-SCLoadBalancerVIPMember

Get-SCLoadBalancerVIP

New-SCLoadBalancerVIPMember

Remove-SCLoadBalancerVIPMember