Interface ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendAddress<ParentT>
- Type Parameters:
ParentT- the stage of the application gateway definition to return to after attaching this definition
- All Known Subinterfaces:
ApplicationGatewayRequestRoutingRule.UpdateDefinition<ParentT>, ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendAddressOrAttach<ParentT>, ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendOrAddress<ParentT>
- Enclosing interface:
ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages
public static interface ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendAddress<ParentT>
The stage of an application gateway request routing rule definition allowing to add an address to the backend
used by this request routing rule.
A new backend will be created if none is associated with this rule yet.
-
Method Summary
Modifier and TypeMethodDescriptiontoBackendFqdn(String fqdn) Adds an FQDN (fully qualified domain name) to the backend associated with this rule.toBackendIPAddress(String ipAddress) Adds an IP address to the backend associated with this rule.toBackendIPAddresses(String... ipAddresses) Adds the specified IP addresses to the backend associated with this rule.
-
Method Details
-
toBackendIPAddress
ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendAddressOrAttach<ParentT> toBackendIPAddress(String ipAddress) Adds an IP address to the backend associated with this rule.If no backend has been associated with this rule yet, a new one will be created with an auto-generated name.
This call can be used in a sequence to add multiple IP addresses.
- Parameters:
ipAddress- an IP address- Returns:
- the next stage of the definition
-
toBackendIPAddresses
ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendAddressOrAttach<ParentT> toBackendIPAddresses(String... ipAddresses) Adds the specified IP addresses to the backend associated with this rule.- Parameters:
ipAddresses- IP addresses to add- Returns:
- the next stage of the definition
-
toBackendFqdn
ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.WithBackendAddressOrAttach<ParentT> toBackendFqdn(String fqdn) Adds an FQDN (fully qualified domain name) to the backend associated with this rule.If no backend has been associated with this rule yet, a new one will be created with an auto-generated name.
This call can be used in a sequence to add multiple FQDNs.
- Parameters:
fqdn- a fully qualified domain name- Returns:
- the next stage of the definition
-