Interface ApplicationGatewayRedirectConfiguration.UpdateStages.WithTarget
-
- All Known Subinterfaces:
ApplicationGatewayRedirectConfiguration.Update
- Enclosing interface:
- ApplicationGatewayRedirectConfiguration.UpdateStages
public static interface ApplicationGatewayRedirectConfiguration.UpdateStages.WithTargetThe stage of an application gateway redirect configuration allowing to specify the target URL or listener for the redirection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayRedirectConfiguration.UpdatewithoutTargetListener()Removes the reference to the target listener.ApplicationGatewayRedirectConfiguration.UpdatewithoutTargetUrl()Removes the reference to the target URL.ApplicationGatewayRedirectConfiguration.UpdatewithTargetListener(String name)Specifies the listener on this application gateway to redirect to.ApplicationGatewayRedirectConfiguration.UpdatewithTargetUrl(String url)Specifies the URL to redirect to.
-
-
-
Method Detail
-
withTargetUrl
ApplicationGatewayRedirectConfiguration.Update withTargetUrl(String url)
Specifies the URL to redirect to.- Parameters:
url- a URL- Returns:
- the next stage of the update
-
withTargetListener
ApplicationGatewayRedirectConfiguration.Update withTargetListener(String name)
Specifies the listener on this application gateway to redirect to.- Parameters:
name- the name of a listener on this application gateway- Returns:
- the next stage of the update
-
withoutTargetListener
ApplicationGatewayRedirectConfiguration.Update withoutTargetListener()
Removes the reference to the target listener.- Returns:
- the next stage of the update
-
withoutTargetUrl
ApplicationGatewayRedirectConfiguration.Update withoutTargetUrl()
Removes the reference to the target URL.- Returns:
- the next stage of the update
-
-