ApplicationGatewayUrlPathMap.UpdateDefinitionStages.WithBackendAddress<ParentT> Interface

Type Parameters

ParentT

the stage of the application gateway definition to return to after attaching this definition

public static interface ApplicationGatewayUrlPathMap.UpdateDefinitionStages.WithBackendAddress

The stage of an application gateway URL path map definition allowing to add an address to the backend used by this URL path map.

A new backend will be created if none is associated with this rule yet.

Method Summary

Modifier and Type Method and Description
abstract WithBackendAddressOrPath<ParentT> toBackendFqdn(String fqdn)

Adds an FQDN (fully qualified domain name) to the backend associated with this URL path map.

abstract WithBackendAddressOrPath<ParentT> toBackendIPAddress(String ipAddress)

Adds an IP address to the backend associated with this URL path map.

abstract WithBackendAddressOrPath<ParentT> toBackendIPAddresses(String[] ipAddresses)

Adds the specified IP addresses to the backend associated with this URL path map.

Method Details

toBackendFqdn

public abstract ApplicationGatewayUrlPathMap.UpdateDefinitionStages.WithBackendAddressOrPath toBackendFqdn(String fqdn)

Adds an FQDN (fully qualified domain name) to the backend associated with this URL path map.

If no backend has been associated with this URL path map 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

toBackendIPAddress

public abstract ApplicationGatewayUrlPathMap.UpdateDefinitionStages.WithBackendAddressOrPath toBackendIPAddress(String ipAddress)

Adds an IP address to the backend associated with this URL path map.

If no backend has been associated with this URL path map 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

public abstract ApplicationGatewayUrlPathMap.UpdateDefinitionStages.WithBackendAddressOrPath toBackendIPAddresses(String[] ipAddresses)

Adds the specified IP addresses to the backend associated with this URL path map.

Parameters:

ipAddresses - IP addresses to add

Returns:

the next stage of the definition

Applies to