ApplicationGateway.UpdateStages.WithBackendHttpConfig Interface

public static interface ApplicationGateway.UpdateStages.WithBackendHttpConfig

The stage of an application gateway update allowing to modify backend HTTP configurations.

Method Summary

Modifier and Type Method and Description
abstract Blank<Update> defineBackendHttpConfiguration(String name)

Begins the definition of a new application gateway backend HTTP configuration to be attached to the gateway.

abstract Update updateBackendHttpConfiguration(String name)

Begins the update of a backend HTTP configuration.

abstract Update withoutBackendHttpConfiguration(String name)

Removes the specified backend HTTP configuration from this application gateway.

Method Details

defineBackendHttpConfiguration

public abstract ApplicationGatewayBackendHttpConfiguration.UpdateDefinitionStages.Blank defineBackendHttpConfiguration(String name)

Begins the definition of a new application gateway backend HTTP configuration to be attached to the gateway.

Parameters:

name - a unique name for the backend HTTP configuration

Returns:

the first stage of the backend HTTP configuration definition

updateBackendHttpConfiguration

public abstract ApplicationGatewayBackendHttpConfiguration.Update updateBackendHttpConfiguration(String name)

Begins the update of a backend HTTP configuration.

Parameters:

name - the name of an existing backend HTTP configuration on this application gateway

Returns:

the next stage of the update

withoutBackendHttpConfiguration

public abstract ApplicationGateway.Update withoutBackendHttpConfiguration(String name)

Removes the specified backend HTTP configuration from this application gateway.

Note that removing a backend HTTP configuration referenced by other settings may break the application gateway.

Parameters:

name - the name of an existing backend HTTP configuration on this application gateway

Returns:

the next stage of the update

Applies to