Interface NetworkInterface.UpdateStages.WithPrimaryPublicIPAddress
- All Known Subinterfaces:
NetworkInterface.Update
- Enclosing interface:
NetworkInterface.UpdateStages
public static interface NetworkInterface.UpdateStages.WithPrimaryPublicIPAddress
The stage of the network interface update allowing to associate public IP address with it's primary IP
configuration.
-
Method Summary
Modifier and TypeMethodDescriptionwithExistingPrimaryPublicIPAddress(PublicIpAddress publicIPAddress) Associates an existing public IP address with the network interface's primary IP configuration. if there is an existing public IP association then that will be removed in favour of thisCreates a new public IP address in the same region and group as the resource and associate it with the network interface's primary IP configuration.withNewPrimaryPublicIPAddress(Creatable<PublicIpAddress> creatable) Create a new public IP address to associate the network interface's primary IP configuration, based on the provided definition.withNewPrimaryPublicIPAddress(String leafDnsLabel) Creates a new public IP address in the same region and group as the resource, with the specified DNS label and associate it with the network interface's primary IP configuration.Specifies that remove any public IP associated with the network interface's primary IP configuration.
-
Method Details
-
withNewPrimaryPublicIPAddress
Create a new public IP address to associate the network interface's primary IP configuration, based on the provided definition.if there is public IP associated with the primary IP configuration then that will be removed in favour of this
- Parameters:
creatable- a creatable definition for a new public IP- Returns:
- the next stage of the network interface update
-
withNewPrimaryPublicIPAddress
NetworkInterface.Update withNewPrimaryPublicIPAddress()Creates a new public IP address in the same region and group as the resource and associate it with the network interface's primary IP configuration.the internal name and DNS label for the public IP address will be derived from the network interface name, if there is an existing public IP association then that will be removed in favour of this
- Returns:
- the next stage of the network interface update
-
withNewPrimaryPublicIPAddress
Creates a new public IP address in the same region and group as the resource, with the specified DNS label and associate it with the network interface's primary IP configuration.the internal name for the public IP address will be derived from the DNS label, if there is an existing public IP association then that will be removed in favour of this
- Parameters:
leafDnsLabel- the leaf domain label- Returns:
- the next stage of the network interface update
-
withoutPrimaryPublicIPAddress
NetworkInterface.Update withoutPrimaryPublicIPAddress()Specifies that remove any public IP associated with the network interface's primary IP configuration.- Returns:
- the next stage of the network interface update
-
withExistingPrimaryPublicIPAddress
Associates an existing public IP address with the network interface's primary IP configuration. if there is an existing public IP association then that will be removed in favour of this- Parameters:
publicIPAddress- an existing public IP address- Returns:
- the next stage of the network interface update
-