Interface ApplicationGatewayListener.UpdateStages.WithFrontend
-
- All Known Subinterfaces:
ApplicationGatewayListener.Update
- Enclosing interface:
- ApplicationGatewayListener.UpdateStages
public static interface ApplicationGatewayListener.UpdateStages.WithFrontendThe stage of an application gateway frontend listener update allowing to specify the frontend IP configuration to associate the listener with.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayListener.UpdatewithPrivateFrontend()Associates the listener with the application gateway's private (internal) frontend.ApplicationGatewayListener.UpdatewithPublicFrontend()Associates the listener with the application gateway's public (Internet-facing) frontend.
-
-
-
Method Detail
-
withPrivateFrontend
ApplicationGatewayListener.Update withPrivateFrontend()
Associates the listener with the application gateway's private (internal) frontend.If the private frontend does not exist yet, it will be created under an auto-generated name and associated with the application gateway's subnet.
- Returns:
- the next stage of the update
-
withPublicFrontend
ApplicationGatewayListener.Update withPublicFrontend()
Associates the listener with the application gateway's public (Internet-facing) frontend.If the public frontend does not exist yet, it will be created under an auto-generated name and associated with the application gateway's public IP address.
- Returns:
- the next stage of the update
-
-