ApplicationGateway.UpdateStages.WithRedirectConfiguration Interface

public static interface ApplicationGateway.UpdateStages.WithRedirectConfiguration

The stage of an application gateway definition allowing to add a redirect configuration.

Method Summary

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

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

abstract Update updateRedirectConfiguration(String name)

Begins the update of a redirect configuration.

abstract Update withoutRedirectConfiguration(String name)

Removes a redirect configuration from the application gateway.

Method Details

defineRedirectConfiguration

public abstract ApplicationGatewayRedirectConfiguration.UpdateDefinitionStages.Blank defineRedirectConfiguration(String name)

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

Parameters:

name - a unique name for the redirect configuration

Returns:

the first stage of the redirect configuration definition

updateRedirectConfiguration

public abstract ApplicationGatewayRedirectConfiguration.Update updateRedirectConfiguration(String name)

Begins the update of a redirect configuration.

Parameters:

name - the name of an existing redirect configuration to update

Returns:

the next stage of the definition or null if the requested redirect configuration does not exist

withoutRedirectConfiguration

public abstract ApplicationGateway.Update withoutRedirectConfiguration(String name)

Removes a redirect configuration from the application gateway.

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

Parameters:

name - the name of the redirect configuration to remove

Returns:

the next stage of the update

Applies to