Interface ApplicationGatewayListener.UpdateStages.WithFrontendPort
-
- All Known Subinterfaces:
ApplicationGatewayListener.Update
- Enclosing interface:
- ApplicationGatewayListener.UpdateStages
public static interface ApplicationGatewayListener.UpdateStages.WithFrontendPortThe stage of an application gateway frontend listener update allowing to specify the frontend port to associate the listener with.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayListener.UpdatewithFrontendPort(int portNumber)Enables the listener to listen on the specified frontend port number.ApplicationGatewayListener.UpdatewithFrontendPort(String name)Enables the listener to listen on the specified existing frontend port.
-
-
-
Method Detail
-
withFrontendPort
ApplicationGatewayListener.Update withFrontendPort(String name)
Enables the listener to listen on the specified existing frontend port.- Parameters:
name- the name of an existing frontend port- Returns:
- the next stage of the definition
-
withFrontendPort
ApplicationGatewayListener.Update withFrontendPort(int portNumber)
Enables the listener to listen on the specified frontend port number.If a frontend port for this port number does not yet exist, a new will be created with an auto-generated name.
- Parameters:
portNumber- a port number- Returns:
- the next stage of the definition
-
-