IWithFrontend<ReturnT>.FromNewPublicIPAddress Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
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. |
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.
public ReturnT FromNewPublicIPAddress ();
abstract member FromNewPublicIPAddress : unit -> 'ReturnT
Public Function FromNewPublicIPAddress () As ReturnT
Returns
Applies to
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.
public ReturnT FromNewPublicIPAddress (Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions.ICreatable<Microsoft.Azure.Management.Network.Fluent.IPublicIPAddress> pipDefinition);
abstract member FromNewPublicIPAddress : Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions.ICreatable<Microsoft.Azure.Management.Network.Fluent.IPublicIPAddress> -> 'ReturnT
Public Function FromNewPublicIPAddress (pipDefinition As ICreatable(Of IPublicIPAddress)) As ReturnT
Parameters
- pipDefinition
- ICreatable<IPublicIPAddress>
A definition for the new public IP.
Returns
Applies to
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.
public ReturnT FromNewPublicIPAddress (string leafDnsLabel);
abstract member FromNewPublicIPAddress : string -> 'ReturnT
Public Function FromNewPublicIPAddress (leafDnsLabel As String) As ReturnT
Parameters
- leafDnsLabel
- String
A unique leaf DNS label to create the public IP address under.
Returns
Applies to
Azure SDK for .NET