Interface ApplicationGateway.UpdateStages.WithRedirectConfiguration
-
- All Known Subinterfaces:
ApplicationGateway.Update
- Enclosing interface:
- ApplicationGateway.UpdateStages
public static interface ApplicationGateway.UpdateStages.WithRedirectConfigurationThe stage of an application gateway definition allowing to add a redirect configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayRedirectConfiguration.UpdateDefinitionStages.Blank<ApplicationGateway.Update>defineRedirectConfiguration(String name)Begins the definition of a new application gateway redirect configuration to be attached to the gateway.ApplicationGatewayRedirectConfiguration.UpdateupdateRedirectConfiguration(String name)Begins the update of a redirect configuration.ApplicationGateway.UpdatewithoutRedirectConfiguration(String name)Removes a redirect configuration from the application gateway.
-
-
-
Method Detail
-
defineRedirectConfiguration
ApplicationGatewayRedirectConfiguration.UpdateDefinitionStages.Blank<ApplicationGateway.Update> 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
-
withoutRedirectConfiguration
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
-
updateRedirectConfiguration
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
-
-