Interface ApplicationGatewayBackend.UpdateStages.WithAddress
- All Known Subinterfaces:
ApplicationGatewayBackend.Update
- Enclosing interface:
ApplicationGatewayBackend.UpdateStages
public static interface ApplicationGatewayBackend.UpdateStages.WithAddress
The stage of an application gateway backend update allowing to add an address to the backend.
-
Method Summary
Modifier and TypeMethodDescriptionAdds the specified existing fully qualified domain name (FQDN) to the backend.withIPAddress(String ipAddress) Adds the specified existing IP address to the backend.Ensure the specified address is not associated with this backend.withoutFqdn(String fqdn) Ensures the specified fully qualified domain name (FQDN) is not associated with this backend.withoutIPAddress(String ipAddress) Ensures the specified IP address is not associated with this backend.
-
Method Details
-
withIPAddress
Adds the specified existing IP address to the backend.- Parameters:
ipAddress- an IP address- Returns:
- the next stage of the update
-
withFqdn
Adds the specified existing fully qualified domain name (FQDN) to the backend.- Parameters:
fqdn- a fully qualified domain name (FQDN)- Returns:
- the next stage of the update
-
withoutIPAddress
Ensures the specified IP address is not associated with this backend.- Parameters:
ipAddress- an IP address- Returns:
- the next stage of the update
-
withoutAddress
Ensure the specified address is not associated with this backend.- Parameters:
address- an existing address currently associated with the backend- Returns:
- the next stage of the update
-
withoutFqdn
Ensures the specified fully qualified domain name (FQDN) is not associated with this backend.- Parameters:
fqdn- a fully qualified domain name- Returns:
- the next stage of the update
-