Interface ApplicationGateway.UpdateStages.WithUrlPathMap
-
- All Known Subinterfaces:
ApplicationGateway.Update
- Enclosing interface:
- ApplicationGateway.UpdateStages
public static interface ApplicationGateway.UpdateStages.WithUrlPathMapThe stage of an application gateway definition allowing to modify URL path maps.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayUrlPathMap.UpdateupdateUrlPathMap(String name)Begins the update of a URL path map.ApplicationGateway.UpdatewithoutUrlPathMap(String name)Removes a URL path map from the application gateway.
-
-
-
Method Detail
-
withoutUrlPathMap
ApplicationGateway.Update withoutUrlPathMap(String name)
Removes a URL path map from the application gateway.Note that removing a URL path map referenced by other settings may break the application gateway.
- Parameters:
name- the name of the URL path map to remove (case sensitive)- Returns:
- the next stage of the update
-
updateUrlPathMap
ApplicationGatewayUrlPathMap.Update updateUrlPathMap(String name)
Begins the update of a URL path map.- Parameters:
name- the name of an existing redirect configuration to update (case sensitive)- Returns:
- the next stage of the definition or null if the requested URL path map does not exist
-
-