Interface ApplicationGatewayRedirectConfiguration
- All Superinterfaces:
ChildResource<ApplicationGateway>,HasInnerModel<ApplicationGatewayRedirectConfigurationInner>,HasName,HasParent<ApplicationGateway>,Indexable
public interface ApplicationGatewayRedirectConfiguration
extends HasInnerModel<ApplicationGatewayRedirectConfigurationInner>, ChildResource<ApplicationGateway>
A client-side representation of an application gateway's redirect configuration.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceThe entirety of an application gateway redirect configuration definition.static interfaceGrouping of application gateway redirect configuration configuration stages.static interfaceThe entirety of an application gateway redirect configuration update as part of an application gateway update.static interfaceThe entirety of an application gateway redirect configuration definition as part of an application gateway update.static interfaceGrouping of application gateway redirect configuration definition stages applicable as part of an application gateway update.static interfaceGrouping of application gateway redirect configuration update stages. -
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks whether the path is included in the redirected URL.booleanChecks whether the query string is included in the redirected URL.Gets request routing rules on this application referencing this redirect configuration.Gets the target listener on this application network traffic is redirected to.Gets the target URL network traffic is redirected to.type()Gets the type of redirection.Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModelMethods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasName
name
-
Method Details
-
type
Gets the type of redirection.- Returns:
- the type of redirection.
-
targetListener
ApplicationGatewayListener targetListener()Gets the target listener on this application network traffic is redirected to.- Returns:
- the target listener on this application network traffic is redirected to
-
targetUrl
String targetUrl()Gets the target URL network traffic is redirected to.- Returns:
- the target URL network traffic is redirected to
-
requestRoutingRules
Map<String,ApplicationGatewayRequestRoutingRule> requestRoutingRules()Gets request routing rules on this application referencing this redirect configuration.- Returns:
- request routing rules on this application referencing this redirect configuration, indexed by name
-
isPathIncluded
boolean isPathIncluded()Checks whether the path is included in the redirected URL.- Returns:
- true if the path is included in the redirected URL, otherwise false
-
isQueryStringIncluded
boolean isQueryStringIncluded()Checks whether the query string is included in the redirected URL.- Returns:
- true if the query string is included in the redirected URL, otherwise false
-