ApplicationGatewayBackendHttpConfiguration Interface

Implements

public interface ApplicationGatewayBackendHttpConfiguration
extends HasInner<ApplicationGatewayBackendHttpSettings>, ChildResource<ApplicationGateway>, HasProtocol<ApplicationGatewayProtocol>, HasPort

A client-side representation of an application gateway's backend HTTP configuration.

Method Summary

Modifier and Type Method and Description
abstract java.lang.String affinityCookieName()
abstract java.util.Map<java.lang.String,ApplicationGatewayAuthenticationCertificate> authenticationCertificates()
abstract int connectionDrainingTimeoutInSeconds()
abstract boolean cookieBasedAffinity()
abstract java.lang.String hostHeader()
abstract boolean isHostHeaderFromBackend()
abstract boolean isProbeEnabled()
abstract java.lang.String path()
abstract ApplicationGatewayProbe probe()
abstract int requestTimeout()

Method Details

affinityCookieName

public abstract String affinityCookieName()

Returns:

name used for the affinity cookie

authenticationCertificates

public abstract Map authenticationCertificates()

Returns:

authentication certificates associated with this backend HTTPS configuration

connectionDrainingTimeoutInSeconds

public abstract int connectionDrainingTimeoutInSeconds()

Returns:

if 0 then connection draining is not enabled, otherwise if between 1 and 3600, then the number of seconds when connection draining is active

cookieBasedAffinity

public abstract boolean cookieBasedAffinity()

Returns:

true if cookie based affinity (sticky sessions) is enabled, else false

hostHeader

public abstract String hostHeader()

Returns:

host header to be sent to the backend servers

isHostHeaderFromBackend

public abstract boolean isHostHeaderFromBackend()

Returns:

whether the host header should come from the host name of the backend server

isProbeEnabled

public abstract boolean isProbeEnabled()

Returns:

true if the probe is enabled

path

public abstract String path()

Returns:

the path, if any, used as a prefix for all HTTP requests

probe

public abstract ApplicationGatewayProbe probe()

Returns:

the probe associated with this backend

requestTimeout

public abstract int requestTimeout()

Returns:

HTTP request timeout in seconds. Requests will fail if no response is received within the specified time.

Applies to