Interface ApplicationGatewayRequestRoutingRule.DefinitionStages.WithFrontendPort<ParentT>
-
- Type Parameters:
ParentT- the stage of the application gateway definition to return to after attaching this definition
- All Known Subinterfaces:
ApplicationGatewayRequestRoutingRule.Definition<ParentT>
- Enclosing interface:
- ApplicationGatewayRequestRoutingRule.DefinitionStages
public static interface ApplicationGatewayRequestRoutingRule.DefinitionStages.WithFrontendPort<ParentT>The stage of an application gateway request routing rule definition allowing to create an associate listener and frontend for a specific port number and protocol.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayRequestRoutingRule.DefinitionStages.WithBackendHttpConfigOrRedirect<ParentT>fromFrontendHttpPort(int portNumber)Associates a new listener for the specified port number and the HTTP protocol with this rule.ApplicationGatewayRequestRoutingRule.DefinitionStages.WithSslCertificate<ParentT>fromFrontendHttpsPort(int portNumber)Associates a new listener for the specified port number and the HTTPS protocol with this rule.
-
-
-
Method Detail
-
fromFrontendHttpPort
ApplicationGatewayRequestRoutingRule.DefinitionStages.WithBackendHttpConfigOrRedirect<ParentT> fromFrontendHttpPort(int portNumber)
Associates a new listener for the specified port number and the HTTP protocol with this rule.- Parameters:
portNumber- the port number to listen to- Returns:
- the next stage of the definition, or null if the specified port number is already used for a different protocol
-
fromFrontendHttpsPort
ApplicationGatewayRequestRoutingRule.DefinitionStages.WithSslCertificate<ParentT> fromFrontendHttpsPort(int portNumber)
Associates a new listener for the specified port number and the HTTPS protocol with this rule.- Parameters:
portNumber- the port number to listen to- Returns:
- the next stage of the definition, or null if the specified port number is already used for a different protocol
-
-