Interface ApplicationGatewayListener.DefinitionStages.WithFrontend<ParentT>
- Type Parameters:
ParentT- the stage of the parent application gateway definition to return to after attaching this definition
- All Known Subinterfaces:
ApplicationGatewayListener.Definition<ParentT>,ApplicationGatewayListener.DefinitionStages.Blank<ParentT>
- Enclosing interface:
ApplicationGatewayListener.DefinitionStages
public static interface ApplicationGatewayListener.DefinitionStages.WithFrontend<ParentT>
The stage of an application gateway frontend listener definition allowing to specify the frontend IP
configuration to associate the listener with.
-
Method Summary
Modifier and TypeMethodDescriptionAssociates the listener with the application gateway's private (internal) frontend.Associates the listener with the application gateway's public (Internet-facing) frontend.
-
Method Details
-
withPrivateFrontend
ApplicationGatewayListener.DefinitionStages.WithFrontendPort<ParentT> 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 definition
-
withPublicFrontend
ApplicationGatewayListener.DefinitionStages.WithFrontendPort<ParentT> 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 definition
-