ApplicationGatewayBackend.UpdateStages.WithAddress Interface

public interface WithAddress

The stage of an application gateway backend update allowing to add an address to the backend.

Method Summary

Modifier and Type Method and Description
ApplicationGatewayBackend.Update withFqdn(String fqdn)

Adds the specified existing fully qualified domain name (FQDN) to the backend.

ApplicationGatewayBackend.Update withIPAddress(String ipAddress)

Adds the specified existing IP address to the backend.

ApplicationGatewayBackend.Update withoutAddress(ApplicationGatewayBackendAddress address)

Ensure the specified address is not associated with this backend.

ApplicationGatewayBackend.Update withoutFqdn(String fqdn)

Ensures the specified fully qualified domain name (FQDN) is not associated with this backend.

ApplicationGatewayBackend.Update withoutIPAddress(String ipAddress)

Ensures the specified IP address is not associated with this backend.

Method Details

withFqdn

public Update withFqdn(String fqdn)

Adds the specified existing fully qualified domain name (FQDN) to the backend.

Parameters:

fqdn - a fully qualified domain name (FQDN)

Returns:

the next stage of the update

withIPAddress

public Update withIPAddress(String ipAddress)

Adds the specified existing IP address to the backend.

Parameters:

ipAddress - an IP address

Returns:

the next stage of the update

withoutAddress

public Update withoutAddress(ApplicationGatewayBackendAddress address)

Ensure the specified address is not associated with this backend.

Parameters:

address - an existing address currently associated with the backend

Returns:

the next stage of the update

withoutFqdn

public Update withoutFqdn(String fqdn)

Ensures the specified fully qualified domain name (FQDN) is not associated with this backend.

Parameters:

fqdn - a fully qualified domain name

Returns:

the next stage of the update

withoutIPAddress

public Update withoutIPAddress(String ipAddress)

Ensures the specified IP address is not associated with this backend.

Parameters:

ipAddress - an IP address

Returns:

the next stage of the update

Applies to