Sdílet prostřednictvím


IWithFrontend<ReturnT> Interface

Definition

The stage of a definition allowing to specify a load balancer frontend.

public interface IWithFrontend<ReturnT>
type IWithFrontend<'ReturnT> = interface
Public Interface IWithFrontend(Of ReturnT)

Type Parameters

ReturnT

The next stage of the definition.

Derived

Methods

FromExistingPublicIPAddress(IPublicIPAddress)

Specifies an existing public IP address to receive network traffic from. If this load balancer already has a frontend referencing this public IP address, that is the frontend that will be used. Else, an automatically named new public frontend will be created implicitly on the load balancer.

FromExistingPublicIPAddress(String)

Specifies an existing public IP address to receive network traffic from. If this load balancer already has a frontend referencing this public IP address, that is the frontend that will be used. Else, an automatically named new public frontend will be created implicitly on the load balancer.

FromExistingSubnet(INetwork, String)

Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer.

FromExistingSubnet(ISubnet)

Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer.

FromExistingSubnet(String, String)

Specifies an existing private subnet to receive network traffic from. If this load balancer already has a frontend referencing this subnet, that is the frontend that will be used. Else, an automatically named new private frontend will be created implicitly on the load balancer.

FromFrontend(String)

Specifies the frontend to receive network traffic from.

FromNewPublicIPAddress()

Specifies that network traffic should be received on a new public IP address that is to be automatically created woth default settings along with the load balancer. A new automatically-named public frontend will be implicitly created on this load balancer for each such new public IP address.

FromNewPublicIPAddress(ICreatable<IPublicIPAddress>)

Specifies that network traffic should be received on a new public IP address that is to be created along with the load balancer based on the provided definition. A new automatically-named public frontend will be implicitly created on this load balancer for each such new public IP address.

FromNewPublicIPAddress(String)

Specifies that network traffic should be received on a new public IP address that is to be created along with the load balancer in the same region and resource group but under the provided leaf DNS label, assuming it is available. A new automatically-named public frontend will be implicitly created on this load balancer for each such new public IP address, so make sure to use a unique DNS label.

Applies to