Interface ApplicationGateway.UpdateStages.WithListener
-
- All Known Subinterfaces:
ApplicationGateway.Update
- Enclosing interface:
- ApplicationGateway.UpdateStages
public static interface ApplicationGateway.UpdateStages.WithListenerThe stage of an application gateway update allowing to modify frontend listeners.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayListener.UpdateDefinitionStages.Blank<ApplicationGateway.Update>defineListener(String name)Begins the definition of a new application gateway listener to be attached to the gateway.ApplicationGatewayListener.UpdateupdateListener(String name)Begins the update of a listener.ApplicationGateway.UpdatewithoutListener(String name)Removes a frontend listener from the application gateway.
-
-
-
Method Detail
-
defineListener
ApplicationGatewayListener.UpdateDefinitionStages.Blank<ApplicationGateway.Update> defineListener(String name)
Begins the definition of a new application gateway listener to be attached to the gateway.- Parameters:
name- a unique name for the listener- Returns:
- the first stage of the listener definition
-
withoutListener
ApplicationGateway.Update withoutListener(String name)
Removes a frontend listener from the application gateway.Note that removing a listener referenced by other settings may break the application gateway.
- Parameters:
name- the name of the listener to remove- Returns:
- the next stage of the update
-
updateListener
ApplicationGatewayListener.Update updateListener(String name)
Begins the update of a listener.- Parameters:
name- the name of an existing listener to update- Returns:
- the next stage of the definition or null if the requested listener does not exist
-
-