ApplicationGatewayBackend Interface

Implements

public interface ApplicationGatewayBackend
extends HasInner<ApplicationGatewayBackendAddressPool>, ChildResource<ApplicationGateway>, HasBackendNics

A client-side representation of an application gateway backend.

Method Summary

Modifier and Type Method and Description
abstract java.util.Collection<ApplicationGatewayBackendAddress> addresses()
abstract boolean containsFqdn(String fqdn)

Checks whether the specified FQDN is referenced by this backend address pool.

abstract boolean containsIPAddress(String ipAddress)

Checks whether the specified IP address is referenced by this backend address pool.

Method Details

addresses

public abstract Collection addresses()

Returns:

addresses on the backend of the application gateway

containsFqdn

public abstract boolean containsFqdn(String fqdn)

Checks whether the specified FQDN is referenced by this backend address pool.

Parameters:

fqdn - a fully qualified domain name (FQDN)

Returns:

true if the specified FQDN is referenced by this backend, else false

containsIPAddress

public abstract boolean containsIPAddress(String ipAddress)

Checks whether the specified IP address is referenced by this backend address pool.

Parameters:

ipAddress - an IP address

Returns:

true if the specified IP address is referenced by this backend, else false

Applies to