Interface ApplicationGatewayBackendHttpConfiguration.UpdateStages.WithProbe
-
- All Known Subinterfaces:
ApplicationGatewayBackendHttpConfiguration.Update
- Enclosing interface:
- ApplicationGatewayBackendHttpConfiguration.UpdateStages
public static interface ApplicationGatewayBackendHttpConfiguration.UpdateStages.WithProbeThe stage of an application gateway backend HTTP configuration allowing to associate an existing probe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationGatewayBackendHttpConfiguration.UpdatewithoutProbe()Removes the association with a probe.ApplicationGatewayBackendHttpConfiguration.UpdatewithProbe(String name)Specifies an existing probe on this application gateway to associate with this backend.
-
-
-
Method Detail
-
withProbe
ApplicationGatewayBackendHttpConfiguration.Update withProbe(String name)
Specifies an existing probe on this application gateway to associate with this backend.If the probe with the specified name does not yet exist, it must be defined separately in the optional part of the application gateway definition. This only adds a reference to the probe by its name.
- Parameters:
name- the name of an existing probe- Returns:
- the next stage of the update
-
withoutProbe
ApplicationGatewayBackendHttpConfiguration.Update withoutProbe()
Removes the association with a probe.- Returns:
- the next stage of the update
-
-