public static interface LoadBalancer.UpdateStages.WithPublicIpAddress
| Modifier and Type | Method and Description |
|---|---|
LoadBalancer.Update |
withExistingPublicIpAddress(PublicIpAddress publicIpAddress)
Assigns the provided public IP address to the default public frontend to the load balancer.
|
LoadBalancer.Update |
withNewPublicIpAddress()
Creates a new public IP address as the default public frontend of the load balancer,
using an automatically generated name and leaf DNS label
derived from the load balancer's name, in the same resource group and region.
|
LoadBalancer.Update |
withNewPublicIpAddress(com.microsoft.azure.management.resources.fluentcore.model.Creatable<PublicIpAddress> creatablePublicIpAddress)
Adds a new public IP address to the default front end of the load balancer.
|
LoadBalancer.Update |
withNewPublicIpAddress(String dnsLeafLabel)
Adds a new public IP address as the default public frontend of the load balancer,
using the specified DNS leaf label, an automatically generated frontend name derived from the DNS label,
in the same resource group and region as the load balancer.
|
LoadBalancer.Update withExistingPublicIpAddress(PublicIpAddress publicIpAddress)
This will create a new default frontend for the load balancer under the name "default", if one does not already exist.
publicIpAddress - an existing public IP addressLoadBalancer.Update withNewPublicIpAddress()
This will create a new default frontend for the load balancer under the name "default", if one does not already exist.
LoadBalancer.Update withNewPublicIpAddress(String dnsLeafLabel)
dnsLeafLabel - a DNS leaf labelLoadBalancer.Update withNewPublicIpAddress(com.microsoft.azure.management.resources.fluentcore.model.Creatable<PublicIpAddress> creatablePublicIpAddress)
creatablePublicIpAddress - the creatable stage of a public IP address definition/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/