LoadBalancingRule.UpdateDefinitionStages.WithVirtualMachine<ReturnT> Interface

Type Parameters

ReturnT

the next stage of the definition

public static interface LoadBalancingRule.UpdateDefinitionStages.WithVirtualMachine

The stage of a load balancing rule definition allowing to select a set of virtual machines to load balance the network traffic among.

Method Summary

Modifier and Type Method and Description
abstract WithBackendPort<ReturnT> toExistingVirtualMachines(HasNetworkInterfaces[] vms)

Adds the specified set of virtual machines, assuming they are from the same availability set, to a new back end address pool to be associated with this load balancing rule.

abstract WithBackendPort<ReturnT> toExistingVirtualMachines(Collection<HasNetworkInterfaces> vms)

Adds the specified set of virtual machines, assuming they are from the same availability set, to a new back end address pool to be associated with this load balancing rule.

Method Details

toExistingVirtualMachines

public abstract LoadBalancingRule.UpdateDefinitionStages.WithBackendPort toExistingVirtualMachines(HasNetworkInterfaces[] vms)

Adds the specified set of virtual machines, assuming they are from the same availability set, to a new back end address pool to be associated with this load balancing rule.

This will add references to the primary IP configurations of the primary network interfaces of the provided set of virtual machines.

If the virtual machines are not in the same availability set, they will not be associated with the backend.

Only those virtual machines will be associated with the load balancer that already have an existing network interface. Virtual machines without a network interface will be skipped.

Parameters:

vms - existing virtual machines

Returns:

the next stage of the definition

toExistingVirtualMachines

public abstract LoadBalancingRule.UpdateDefinitionStages.WithBackendPort toExistingVirtualMachines(Collection vms)

Adds the specified set of virtual machines, assuming they are from the same availability set, to a new back end address pool to be associated with this load balancing rule.

This will add references to the primary IP configurations of the primary network interfaces of the provided set of virtual machines.

If the virtual machines are not in the same availability set, they will not be associated with the backend.

Only those virtual machines will be associated with the load balancer that already have an existing network interface. Virtual machines without a network interface will be skipped.

Parameters:

vms - existing virtual machines

Returns:

the next stage of the definition

Applies to